@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
28 lines (25 loc) • 687 B
TypeScript
interface ReprimandTypeDocumentView {
/**
* @temp
* @default common
*/
selector: XmlElem<string>;
}
type ReprimandTypeDocumentTopElem = XmlTopElem & {
Doc: ReprimandTypeDocument;
/** Код */
code: XmlElem<string | null>;
/** Название */
name: XmlElem<string | null>;
/** Комментарий */
comment: XmlElem<string | null>;
/** Информация об объекте */
doc_info: XmlElem<DocInfoBase | null>;
/** @temp */
view: XmlElem<ReprimandTypeDocumentView | null>;
};
type ReprimandTypeDocument = XmlDocument & {
TopElem: ReprimandTypeDocumentTopElem;
reprimand_type: ReprimandTypeDocumentTopElem;
DocDesc(): string;
};