UNPKG

@wshcmx/types

Version:

<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.

17 lines (15 loc) 458 B
type DimensionDocumentTopElem = XmlTopElem & { Doc: DimensionDocument; code: XmlElem<string | null>; name: XmlElem<string | null>; /** Комментарий */ comment: XmlElem<string | null>; /** Информация об объекте */ doc_info: XmlElem<DocInfoBase | null>; }; type DimensionDocument = XmlDocument & { TopElem: DimensionDocumentTopElem; dimension: DimensionDocumentTopElem; OnInit(): void; DocDesc(): string; };