@botonic/react
Version:
Build Chatbots using React
13 lines (12 loc) • 441 B
TypeScript
export class DeviceAdapter {
currentDevice: any;
init(host: any): void;
webchatResizer: WebchatResizer | undefined;
scrollbarController: ScrollbarController | undefined;
getCurrentDevice(): any;
onFocus(host: any): void;
onBlur(): void;
fontSize(defaultFontSize?: number): number | "initial";
}
import { WebchatResizer } from './webchat-resizer';
import { ScrollbarController } from './scrollbar-controller';