UNPKG

@auler-hq/nav-agent-dev

Version:

Developer utility for web application inspection and navigation

28 lines (27 loc) 634 B
export declare enum AulerTheme { Light = "light", Dark = "dark" } export declare enum AulerPosition { Top = "top", Bottom = "bottom" } export declare class AulerCustomStyles { backgroundColor?: string; textColor?: string; borderColor?: string; constructor(options?: Partial<AulerCustomStyles>); } export interface AulerConfig { apiKey: string; theme?: AulerTheme; position?: AulerPosition; placeholder?: string; customStyles?: AulerCustomStyles; } export interface AulerInstance { show: () => void; hide: () => void; destroy: () => void; isVisible: () => boolean; }