UNPKG

@wshcmx/types

Version:

<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.

21 lines (19 loc) 484 B
type AuthTypeDocumentTopElem = XmlTopElem & ObjectCodeNameBase & ExecCodeBase & WebVariablesBase & { Doc: AuthTypeDocument; /** * Является системным * @default false */ is_std: XmlElem<boolean | null>; /** Комментарий */ comment: XmlElem<string | null>; doc_info: XmlElem<DocInfoBase | null>; }; type AuthTypeDocument = XmlDocument & { TopElem: AuthTypeDocumentTopElem; auth_type: AuthTypeDocumentTopElem; DocDesc(): string; };