mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-03-15 04:50:53 +08:00
Specify extension in include paths
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import IntegerEntity from "./IntegerEntity"
|
||||
import IntegerEntity from "./IntegerEntity.js"
|
||||
|
||||
export default class ByteEntity extends IntegerEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import SymbolEntity from "./SymbolEntity"
|
||||
import SymbolEntity from "./SymbolEntity.js"
|
||||
|
||||
export default class EnumEntity extends SymbolEntity {
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import IEntity from "./IEntity"
|
||||
import InvariantTextEntity from "./InvariantTextEntity"
|
||||
import LocalizedTextEntity from "./LocalizedTextEntity"
|
||||
import UnionType from "./UnionType"
|
||||
import IEntity from "./IEntity.js"
|
||||
import InvariantTextEntity from "./InvariantTextEntity.js"
|
||||
import LocalizedTextEntity from "./LocalizedTextEntity.js"
|
||||
import UnionType from "./UnionType.js"
|
||||
|
||||
export default class FormatTextEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import GuidEntity from "./GuidEntity"
|
||||
import IEntity from "./IEntity"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
||||
import GuidEntity from "./GuidEntity.js"
|
||||
import IEntity from "./IEntity.js"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity.js"
|
||||
|
||||
export default class FunctionReferenceEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class GuidEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import SerializerFactory from "../serialization/SerializerFactory"
|
||||
import SubAttributesDeclaration from "./SubObject"
|
||||
import UnionType from "./UnionType"
|
||||
import Utility from "../Utility"
|
||||
import SerializerFactory from "../serialization/SerializerFactory.js"
|
||||
import SubAttributesDeclaration from "./SubObject.js"
|
||||
import UnionType from "./UnionType.js"
|
||||
import Utility from "../Utility.js"
|
||||
|
||||
/**
|
||||
* @typedef {(entity: IEntity) => AnyValue} ValueSupplier
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class IdentifierEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class Integer64Entity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class IntegerEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class InvariantTextEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import IdentifierEntity from "./IdentifierEntity"
|
||||
import IEntity from "./IEntity"
|
||||
import IdentifierEntity from "./IdentifierEntity.js"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class KeyBindingEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import IEntity from "./IEntity"
|
||||
import RealUnitEntity from "./UnitRealEntity"
|
||||
import Utility from "../Utility"
|
||||
import IEntity from "./IEntity.js"
|
||||
import RealUnitEntity from "./UnitRealEntity.js"
|
||||
import Utility from "../Utility.js"
|
||||
|
||||
export default class LinearColorEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import IEntity from "./IEntity"
|
||||
import Utility from "../Utility"
|
||||
import IEntity from "./IEntity.js"
|
||||
import Utility from "../Utility.js"
|
||||
|
||||
export default class LocalizedTextEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import GuidEntity from "./GuidEntity"
|
||||
import IEntity from "./IEntity"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
||||
import GuidEntity from "./GuidEntity.js"
|
||||
import IEntity from "./IEntity.js"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity.js"
|
||||
|
||||
export default class MacroGraphReferenceEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import IntegerEntity from "./IntegerEntity"
|
||||
import Utility from "../Utility"
|
||||
import IntegerEntity from "./IntegerEntity.js"
|
||||
import Utility from "../Utility.js"
|
||||
|
||||
export default class NaturalNumberEntity extends IntegerEntity {
|
||||
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import Configuration from "../Configuration"
|
||||
import FunctionReferenceEntity from "./FunctionReferenceEntity"
|
||||
import GuidEntity from "./GuidEntity"
|
||||
import IdentifierEntity from "./IdentifierEntity"
|
||||
import IEntity from "./IEntity"
|
||||
import IntegerEntity from "./IntegerEntity"
|
||||
import LinearColorEntity from "./LinearColorEntity"
|
||||
import MacroGraphReferenceEntity from "./MacroGraphReferenceEntity"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
||||
import PinEntity from "./PinEntity"
|
||||
import SVGIcon from "../SVGIcon"
|
||||
import SymbolEntity from "./SymbolEntity"
|
||||
import Utility from "../Utility"
|
||||
import VariableReferenceEntity from "./VariableReferenceEntity"
|
||||
import Configuration from "../Configuration.js"
|
||||
import FunctionReferenceEntity from "./FunctionReferenceEntity.js"
|
||||
import GuidEntity from "./GuidEntity.js"
|
||||
import IdentifierEntity from "./IdentifierEntity.js"
|
||||
import IEntity from "./IEntity.js"
|
||||
import IntegerEntity from "./IntegerEntity.js"
|
||||
import LinearColorEntity from "./LinearColorEntity.js"
|
||||
import MacroGraphReferenceEntity from "./MacroGraphReferenceEntity.js"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity.js"
|
||||
import PinEntity from "./PinEntity.js"
|
||||
import SVGIcon from "../SVGIcon.js"
|
||||
import SymbolEntity from "./SymbolEntity.js"
|
||||
import Utility from "../Utility.js"
|
||||
import VariableReferenceEntity from "./VariableReferenceEntity.js"
|
||||
|
||||
export default class ObjectEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class ObjectReferenceEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class PathSymbolEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,27 +1,27 @@
|
||||
import ByteEntity from "./ByteEntity"
|
||||
import Configuration from "../Configuration"
|
||||
import EnumEntity from "./EnumEntity"
|
||||
import FormatTextEntity from "./FormatTextEntity"
|
||||
import FunctionReferenceEntity from "./FunctionReferenceEntity"
|
||||
import GuidEntity from "./GuidEntity"
|
||||
import IEntity from "./IEntity"
|
||||
import Integer64Entity from "./Integer64Entity"
|
||||
import IntegerEntity from "./IntegerEntity"
|
||||
import LinearColorEntity from "./LinearColorEntity"
|
||||
import LocalizedTextEntity from "./LocalizedTextEntity"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity"
|
||||
import PathSymbolEntity from "./PathSymbolEntity"
|
||||
import PinReferenceEntity from "./PinReferenceEntity"
|
||||
import PinTypeEntity from "./PinTypeEntity"
|
||||
import RotatorEntity from "./RotatorEntity"
|
||||
import SimpleSerializationRotatorEntity from "./SimpleSerializationRotatorEntity"
|
||||
import SimpleSerializationVector2DEntity from "./SimpleSerializationVector2DEntity"
|
||||
import SimpleSerializationVectorEntity from "./SimpleSerializationVectorEntity"
|
||||
import SubAttributesDeclaration from "./SubObject"
|
||||
import UnionType from "./UnionType"
|
||||
import Utility from "../Utility"
|
||||
import Vector2DEntity from "./Vector2DEntity"
|
||||
import VectorEntity from "./VectorEntity"
|
||||
import ByteEntity from "./ByteEntity.js"
|
||||
import Configuration from "../Configuration.js"
|
||||
import EnumEntity from "./EnumEntity.js"
|
||||
import FormatTextEntity from "./FormatTextEntity.js"
|
||||
import FunctionReferenceEntity from "./FunctionReferenceEntity.js"
|
||||
import GuidEntity from "./GuidEntity.js"
|
||||
import IEntity from "./IEntity.js"
|
||||
import Integer64Entity from "./Integer64Entity.js"
|
||||
import IntegerEntity from "./IntegerEntity.js"
|
||||
import LinearColorEntity from "./LinearColorEntity.js"
|
||||
import LocalizedTextEntity from "./LocalizedTextEntity.js"
|
||||
import ObjectReferenceEntity from "./ObjectReferenceEntity.js"
|
||||
import PathSymbolEntity from "./PathSymbolEntity.js"
|
||||
import PinReferenceEntity from "./PinReferenceEntity.js"
|
||||
import PinTypeEntity from "./PinTypeEntity.js"
|
||||
import RotatorEntity from "./RotatorEntity.js"
|
||||
import SimpleSerializationRotatorEntity from "./SimpleSerializationRotatorEntity.js"
|
||||
import SimpleSerializationVector2DEntity from "./SimpleSerializationVector2DEntity.js"
|
||||
import SimpleSerializationVectorEntity from "./SimpleSerializationVectorEntity.js"
|
||||
import SubAttributesDeclaration from "./SubObject.js"
|
||||
import UnionType from "./UnionType.js"
|
||||
import Utility from "../Utility.js"
|
||||
import Vector2DEntity from "./Vector2DEntity.js"
|
||||
import VectorEntity from "./VectorEntity.js"
|
||||
|
||||
/**
|
||||
* @typedef {import("./IEntity").AnyValue} AnyValue
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import GuidEntity from "./GuidEntity"
|
||||
import IEntity from "./IEntity"
|
||||
import PathSymbolEntity from "./PathSymbolEntity"
|
||||
import GuidEntity from "./GuidEntity.js"
|
||||
import IEntity from "./IEntity.js"
|
||||
import PathSymbolEntity from "./PathSymbolEntity.js"
|
||||
|
||||
export default class PinReferenceEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class PinTypeEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class RotatorEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import RotatorEntity from "./RotatorEntity"
|
||||
import RotatorEntity from "./RotatorEntity.js"
|
||||
|
||||
export default class SimpleSerializationRotatorEntity extends RotatorEntity {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import Vector2DEntity from "./Vector2DEntity"
|
||||
import Vector2DEntity from "./Vector2DEntity.js"
|
||||
|
||||
export default class SimpleSerializationVector2DEntity extends Vector2DEntity {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import VectorEntity from "./VectorEntity"
|
||||
import VectorEntity from "./VectorEntity.js"
|
||||
|
||||
export default class SimpleSerializationVectorEntity extends VectorEntity {
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class SymbolEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import IEntity from "./IEntity"
|
||||
import Utility from "../Utility"
|
||||
import IEntity from "./IEntity.js"
|
||||
import Utility from "../Utility.js"
|
||||
|
||||
export default class RealUnitEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class UnknownKeysEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import IEntity from "./IEntity"
|
||||
import GuidEntity from "./GuidEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
import GuidEntity from "./GuidEntity.js"
|
||||
|
||||
export default class VariableReferenceEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class Vector2DEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import IEntity from "./IEntity"
|
||||
import IEntity from "./IEntity.js"
|
||||
|
||||
export default class VectorEntity extends IEntity {
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import ObjectEntity from "../ObjectEntity"
|
||||
import ObjectReferenceEntity from "../ObjectReferenceEntity"
|
||||
import PinEntity from "../PinEntity"
|
||||
import ObjectEntity from "../ObjectEntity.js"
|
||||
import ObjectReferenceEntity from "../ObjectReferenceEntity.js"
|
||||
import PinEntity from "../PinEntity.js"
|
||||
|
||||
export default class KnotEntity extends ObjectEntity {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user