UNPKG

@wshcmx/types

Version:

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

38 lines (36 loc) 947 B
type LibrarySystemDocumentTopElem = XmlTopElem & MsParametersBase & AdminAccessBase & WebVariablesBase & { Doc: LibrarySystemDocument; id: XmlElem<number | null>; /** Код */ code: XmlElem<string | null>; /** Название */ name: XmlElem<string | null>; library_url: XmlElem<string | null>; /** Описание */ desc: XmlElem<string | null>; /** Комментарий */ comment: XmlElem<string | null>; /** * Является системным * @default false */ is_std: XmlElem<boolean>; /** * Измененный * @default false */ changed: XmlElem<boolean>; doc_info: XmlElem<DocInfoBase | null>; /** @temp */ view: XmlElem<DescBase | null>; get_setting(settingName: string): string; get_settings(): Object; }; type LibrarySystemDocument = XmlDocument & { TopElem: LibrarySystemDocumentTopElem; library_system: LibrarySystemDocumentTopElem; DocDesc(): string; };