@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
32 lines (29 loc) • 931 B
TypeScript
interface SectionInstructionDocumentView {
/**
* @temp
* @default common
*/
selector: XmlElem<string>;
}
type SectionInstructionDocumentTopElem = XmlTopElem & {
Doc: SectionInstructionDocument;
/** Код */
code: XmlElem<string | null>;
/** Название */
name: XmlElem<string | null>;
/** Описание */
desc: XmlElem<string | null>;
/** Корневой раздел инструкции */
parent_object_id: XmlElem<number | null, SectionInstructionCatalogDocumentTopElem>;
/** Комментарий */
comment: XmlElem<string | null>;
/** Информация об объекте */
doc_info: XmlElem<DocInfoBase | null>;
/** @temp */
view: XmlElem<SectionInstructionDocumentView | null>;
};
type SectionInstructionDocument = XmlDocument & {
TopElem: SectionInstructionDocumentTopElem;
section_instruction: SectionInstructionDocumentTopElem;
DocDesc(): string;
};