@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
18 lines (16 loc) • 483 B
TypeScript
type SaleStatusDocumentTopElem = XmlTopElem &
CustomElemsBase & {
Doc: SaleStatusDocument;
code: XmlElem<string | null>;
name: XmlElem<string | null>;
/** Комментарий */
comment: XmlElem<string | null>;
/** Информация об объекте */
doc_info: XmlElem<DocInfoBase | null>;
};
type SaleStatusDocument = XmlDocument & {
TopElem: SaleStatusDocumentTopElem;
sale_status: SaleStatusDocumentTopElem;
OnInit(): void;
DocDesc(): string;
};