UNPKG

habit-export-center

Version:
15 lines (14 loc) 472 B
/** * 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; };