sf-i-reporting
Version:
Superflows Reporting Component
19 lines • 895 B
TypeScript
declare function readCookie(key: string): string;
declare function callApi(url: string, data: string, authorization: any): Promise<unknown>;
declare function callApiPresignedDelete(url: string): Promise<unknown>;
declare function callApiPresignedGet(url: string): Promise<unknown>;
declare function isInteger(value: string): boolean;
declare function isPlainObject(value: any): boolean;
declare const exportFunctions: {
callApi: typeof callApi;
callApiPresignedDelete: typeof callApiPresignedDelete;
callApiPresignedGet: typeof callApiPresignedGet;
validateName: (name: string) => boolean;
readCookie: typeof readCookie;
delay: (delayInms: number) => Promise<unknown>;
timeSince: (date: number) => string;
isInteger: typeof isInteger;
isPlainObject: typeof isPlainObject;
};
export default exportFunctions;
//# sourceMappingURL=util.d.ts.map