likeminds-chat-beta
Version:
LikeMinds Javascript SDK for chat APIs
22 lines (21 loc) • 676 B
TypeScript
import LMChatClient from 'src';
import { SdkConfig } from './shared/types';
import NetworkLibrary from './core/services/networklibrary';
export declare class Base {
xApiKey: string;
xPlatformCode: string;
xVersionCode: number;
xSdkSource: string;
networkLibrary: NetworkLibrary;
constructor(sdkConfig: SdkConfig);
}
export declare class SDKBuilder {
xApiKey: string;
xPlatformCode: string;
xVersionCode: number;
xSdkSource: string;
setApiKey(xapikey: string): SDKBuilder;
setPlatformCode(xplatformcode: string): SDKBuilder;
setVersionCode(xversioncode: number): SDKBuilder;
build(): LMChatClient;
}