eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
13 lines (11 loc) • 456 B
TypeScript
declare const TWILIO_MESSAGE_LIMIT = 1600;
interface TwilioTextOptions {
limit?: number;
}
interface TwilioTextResult {
text: string;
truncated: boolean;
}
declare function truncateTwilioText(text: string, options?: TwilioTextOptions): TwilioTextResult;
declare function twilioTextOrPlaceholder(text: string): string;
export { TWILIO_MESSAGE_LIMIT, type TwilioTextOptions, type TwilioTextResult, truncateTwilioText, twilioTextOrPlaceholder };