UNPKG

angular-xml-editor

Version:
17 lines (16 loc) 430 B
export declare class XmlRuleAttribut { attribName: string; required: boolean; /** when the values are from a given list **/ fixedValues: string[]; defaultValue: string; xsdRawNode: Node; typ: RuleAttributeTypes; constructor(init?: Partial<XmlRuleAttribut>); getTyp(): RuleAttributeTypes; } export declare enum RuleAttributeTypes { String = 0, Enum = 1, Number = 2 }