nativescript-plugin-botjet
Version:
Unofficial nativescript plugin for botjet.ai.
23 lines (18 loc) • 486 B
TypeScript
import { BotJetSDKCommon } from './botjet.common';
export declare class BotJetConfig {
clientId : string;
botId : string;
senderId : string;
isAnonymous?: boolean;
title ?: string;
isLocationRequired ?: boolean;
host ?: string;
profileMeta ?: any;
botIcon ?: string;
accentColor ?: string;
}
export declare class BotJetSDK extends BotJetSDKCommon {
// define your typings manually
// or..
public static launchChatWithConfig(config: BotJetConfig) : void;
}