@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
18 lines (16 loc) • 488 B
TypeScript
type ContractStateDocumentTopElem = XmlTopElem & {
Doc: ContractStateDocument;
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;
};