@bexis2/bexis2-rpm-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
26 lines (25 loc) • 1.43 kB
TypeScript
/****************/
/****************/
export declare const getDataStructures: () => Promise<any>;
export declare const get: (id: any) => Promise<any>;
/****************/
/****************/
export declare const load: (file: string, entityId: number, encoding: number, version: number) => Promise<any>;
export declare const getStructures: () => Promise<any>;
export declare const getDisplayPattern: () => Promise<any>;
export declare const getDelimeters: () => Promise<any>;
export declare const generate: (data: any) => Promise<unknown>;
export declare const checkPrimaryKeySet: (id: number, primaryKeys: number[]) => Promise<any>;
export declare const empty: (id?: number) => Promise<any>;
export declare const copy: (id: number) => Promise<any>;
export declare const remove: (id: any) => Promise<any>;
export declare const store: (data: any) => Promise<import("axios").AxiosResponse<any, any> | undefined>;
export declare const create: (data: any) => Promise<any>;
export declare const save: (data: any) => Promise<any>;
export declare const getDataTypes: () => Promise<any>;
export declare const getUnits: () => Promise<any>;
export declare const getUnitsWithDataTypes: () => Promise<any>;
export declare const getVariableTemplates: () => Promise<any>;
export declare const getMeanings: () => Promise<any>;
export declare const getConstraints: () => Promise<any>;
export declare const goTo: (url: string) => Promise<void>;