mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-16 19:04:40 +08:00
Better typing for grammars
This commit is contained in:
@@ -13,8 +13,9 @@ export default class FunctionReferenceEntity extends IEntity {
|
||||
MemberName: StringEntity,
|
||||
MemberGuid: GuidEntity,
|
||||
}
|
||||
/** @type {P<FunctionReferenceEntity>} */
|
||||
static grammar = Grammar.createEntityGrammar(this, Grammar.commaSeparation, false, 0)
|
||||
static grammar = /** @type {P<FunctionReferenceEntity>} */(
|
||||
Grammar.createEntityGrammar(this, Grammar.commaSeparation, false, 0)
|
||||
)
|
||||
|
||||
constructor(values) {
|
||||
super(values)
|
||||
|
||||
Reference in New Issue
Block a user