@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
23 lines (21 loc) • 579 B
TypeScript
type PolicyTypeDocumentTopElem = XmlTopElem &
FileListBase & {
Doc: PolicyTypeDocument;
/** ID */
id: XmlElem<number | null>;
/** Код */
code: XmlElem<string | null>;
/** Название */
name: XmlElem<string | null>;
/** Провайдер */
provider: XmlElem<string | null>;
/** @temp */
view: XmlElem<DescBase | null>;
/** Описание */
desc: XmlElem<string | null>;
doc_info: XmlElem<DocInfoBase | null>;
};
type PolicyTypeDocument = XmlDocument & {
TopElem: PolicyTypeDocumentTopElem;
policy_type: PolicyTypeDocumentTopElem;
};