feedlet-widget
Version:
Lightweight JavaScript widget for capturing user feedback and exit-intent surveys
18 lines (17 loc) • 541 B
TypeScript
export declare const config: {
readonly supabaseUrl: string;
readonly supabaseAnonKey: string;
readonly projectId: string;
readonly version: string;
readonly isDevelopment: boolean;
readonly isDebugMode: boolean;
};
export declare function debugLog(message: string, data?: any): void;
export declare function getEnvironmentInfo(): {
version: string;
isDevelopment: boolean;
isDebugMode: boolean;
supabaseUrl: string;
hasSupabaseKey: boolean;
};
export declare function validateConfig(): string[];