@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
19 lines (17 loc) • 500 B
TypeScript
type ContractStateDocumentTopElem = XmlTopElem & {
Doc: ContractStateDocument;
/** ID */
id: XmlElem<number | null>;
/** Код */
code: XmlElem<string | null>;
/** Название */
name: XmlElem<string | null>;
/** Информация об объекте */
doc_info: XmlElem<DocInfoBase | null>;
};
type ContractStateDocument = XmlDocument & {
TopElem: ContractStateDocumentTopElem;
contract_state: ContractStateDocumentTopElem;
OnInit(): void;
DocDesc(): string;
};