interface Property {
    astNodes: Set<GrammarAST.TypeAttribute | GrammarAST.Action | GrammarAST.Assignment>;
    defaultValue?: PropertyDefaultValue;
    name: string;
    optional: boolean;
    type: PropertyType;
}

Properties

defaultValue?: PropertyDefaultValue
name: string
optional: boolean