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,13 +2,13 @@
* @module types
*/
import { logItemHelper } from '../structs/Item.js'
import { YMap } from './YMap.js'
import * as encoding from 'lib0/encoding.js'
import * as decoding from 'lib0/decoding.js'
import { Y } from '../utils/Y.js' // eslint-disable-line
import { YArray } from './YArray.js'
import { YXmlEvent } from './YXmlEvent.js'
import * as stringify from '../utils/structStringify.js'
/**
* Define the elements to which a set of CSS queries apply.
@@ -234,7 +234,7 @@ export class YXmlFragment extends YArray {
* @private
*/
_logString () {
return stringify.logItemHelper('YXml', this)
return logItemHelper('YXml', this)
}
}