@kamuridesu/whatframework
Version:
A simple WhatsApp Bot Framework on top of Baileys
11 lines (10 loc) • 423 B
TypeScript
declare function parseTextWithQuotation(text: string): string[];
declare function checkMentionsInText(text: string): string[];
declare function checkJidInTextAndConvert(text: string): {
text: string;
mentions: string[];
};
declare function stringFormat(text: string, valuesMap: {
[key: string]: string;
}): string;
export { parseTextWithQuotation, checkMentionsInText, checkJidInTextAndConvert, stringFormat };