habit-export-center
Version:
habit's front end solution to export list
15 lines (14 loc) • 472 B
TypeScript
/**
* Determines the API base URL based on the current environment
*/
export declare function getBaseUrl(): string;
/**
* Builds a full API URL with the correct base URL for the current environment
*/
export declare function buildApiUrl(path: string): string;
export declare const EXPORT_ENDPOINTS: {
list: (userId?: string) => string;
create: (appId: string) => string;
download: (exportId: string) => string;
delete: (exportId: string) => string;
};