UNPKG

navidev-adt-api

Version:

API de conexión al Abap Developer Tools

23 lines 816 B
import { Result } from "../shared/core/Result"; import AdtException from "../shared/exceptions/adtException"; export interface AtcProperty { name: string; value: string; } export type AtcProperties = AtcProperty[]; export interface AtcReason { id: string; justificationMandatory: boolean; title: string; } export type AtcReasons = AtcReason[]; export interface AtcCustomizing { properties: AtcProperties; exemption: AtcReasons; } export type AtcDefaultVariant = string; export type AtcWorklist = string; export type ResultAtcCustomizing = Result<AtcCustomizing> | Result<AdtException>; export type ResultAtcDefaultVariant = Result<AtcDefaultVariant> | Result<AdtException>; export type ResultAtcWorklist = Result<AtcWorklist> | Result<AdtException>; //# sourceMappingURL=atcTypes.d.ts.map