@wshcmx/types
Version:
<h1 align="center">WT Types</h1> <div align="center"> Typescript типы для WebSoft HCM.
16 lines (13 loc) • 354 B
TypeScript
interface ObjectivesBase {
/** Инструкция */
candidate: XmlElem<string | null>;
}
interface ImageBase {
name: XmlElem<string | null>;
data: XmlElem<Binary | null>;
location: XmlElem<string | null, typeof common.material_locations>;
}
interface RubricBase {
candidate: XmlElem<string | null>;
image: XmlElem<ImageBase | null>;
}