UNPKG

vue-chat-button-simple

Version:

Vue 3 chat button components with badge support, modal popup, fixed positioning, environment configuration, and customizable themes

9 lines 339 B
export interface EnvironmentConfig { isProduction: boolean; apiBaseUrl: string; timeout: number; retryCount: number; } export declare const detectEnvironment: () => "development" | "production"; export declare const getEnvironmentConfig: (environment: string) => EnvironmentConfig; //# sourceMappingURL=environment.d.ts.map