20 lines
402 B
TypeScript
20 lines
402 B
TypeScript
import Domain from "../base/Domain";
|
|
import V1 from "./chat/V1";
|
|
import V2 from "./chat/V2";
|
|
import V3 from "./chat/V3";
|
|
declare class ChatBase extends Domain {
|
|
_v1?: V1;
|
|
_v2?: V2;
|
|
_v3?: V3;
|
|
/**
|
|
* Initialize chat domain
|
|
*
|
|
* @param twilio - The twilio client
|
|
*/
|
|
constructor(twilio: any);
|
|
get v1(): V1;
|
|
get v2(): V2;
|
|
get v3(): V3;
|
|
}
|
|
export = ChatBase;
|