fix a few tsc errors (96 remaining)

This commit is contained in:
Kevin Jahns
2019-03-13 02:15:43 +01:00
parent 5a42a94cf4
commit 293527e62b
15 changed files with 63 additions and 86 deletions

View File

@@ -2,10 +2,10 @@
* @module types
*/
import { logItemHelper } from '../structs/Item.js'
import { ItemEmbed } from '../structs/ItemEmbed.js'
import { ItemString } from '../structs/ItemString.js'
import { ItemFormat } from '../structs/ItemFormat.js'
import * as stringify from '../utils/structStringify.js'
import { YArrayEvent, YArray } from './YArray.js'
import { isVisible } from '../utils/snapshot.js'
@@ -720,6 +720,6 @@ export class YText extends YArray {
* @private
*/
_logString () {
return stringify.logItemHelper('YText', this)
return logItemHelper('YText', this)
}
}