@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
33 lines (31 loc) • 986 B
TypeScript
type PlaceDocumentTopElem = XmlTopElem &
FileListBase &
AdminAccessBase &
CustomElemsBase & {
Doc: PlaceDocument;
/** Код */
code: XmlElem<string | null>;
/** Название */
name: XmlElem<string | null>;
/** Родительское расположение */
parent_id: XmlElem<number | null, PlaceCatalogDocumentTopElem>;
/** Регион */
region_id: XmlElem<number | null, RegionCatalogDocumentTopElem>;
/** Временные зоны */
timezone_id: XmlElem<number | null, typeof common.timezones>;
/** Адрес */
address: XmlElem<string | null>;
/** Описание */
desc: XmlElem<string | null>;
/** Комментарий */
comment: XmlElem<string | null>;
/** Информация об объекте */
doc_info: XmlElem<DocInfoBase | null>;
/** @temp */
view: XmlElem<DescBase | null>;
};
type PlaceDocument = XmlDocument & {
TopElem: PlaceDocumentTopElem;
place: PlaceDocumentTopElem;
DocDesc(): string;
};