fix compiling issues
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import Type from '../Struct/Type'
|
||||
import ItemJSON from '../Struct/ItemJSON'
|
||||
import Type from '../Struct/Type.js'
|
||||
import ItemJSON from '../Struct/ItemJSON.js'
|
||||
|
||||
export default class YArray extends Type {
|
||||
forEach (f) {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import Type from '../Struct/Type'
|
||||
import Item from '../Struct/Item'
|
||||
import ItemJSON from '../Struct/ItemJSON'
|
||||
import Type from '../Struct/Type.js'
|
||||
import Item from '../Struct/Item.js'
|
||||
import ItemJSON from '../Struct/ItemJSON.js'
|
||||
|
||||
export default class YMap extends Type {
|
||||
set (key, value) {
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
import YArray from './YArray.js'
|
||||
|
||||
export default class YText extends YArray {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
import YArray from './YArray.js'
|
||||
|
||||
export default class YXml extends YArray {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user