angular-xml-editor
Version:
XML editor component for Angular
17 lines (16 loc) • 430 B
TypeScript
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
}