UNPKG

@ctodev/cclibrary-typings

Version:

Library typings for use with CLARC INFINITY

21 lines (20 loc) 886 B
import { TccET_BIZOBJ } from "./bizobj.model"; export declare namespace masterDataModel { type masterdataNode = { name: string; displayName?: string; children?: masterdataNode[]; }; export const baseBusinessParter: masterdataNode[]; export const baseCustomEntity: masterdataNode[]; export const ArticlesEntity: masterdataNode[]; export const CompaniesEntity: masterdataNode[]; export const CreditorsEntity: masterdataNode[]; export const DebitorsEntity: masterdataNode[]; export const OrdersEntity: masterdataNode[]; export const QuotesEntity: masterdataNode[]; export const SalesOrgsEntity: masterdataNode[]; export function getMasterdataEntity(sourceType: TccET_BIZOBJ.SourceType): masterdataNode[]; export function getDisplayName(path: string, sourceType: TccET_BIZOBJ.SourceType): string; export {}; }