@botonic/react
Version:
Build Chatbots using React
18 lines (17 loc) • 487 B
TypeScript
export const MAX_CHARACTERS_FACEBOOK: 640;
export class MultichannelFacebook {
convertText(props: any, originalText: any): {
texts: any[];
propsLastText: any;
propsWithoutChildren: any;
} | {
propsLastText: any;
texts?: undefined;
propsWithoutChildren?: undefined;
};
splitText(originalText: any): any[];
getNewProps(props: any, lastText: any): {
propsLastText: any;
propsWithoutChildren: any;
};
}