Files
boc/vims-backend/node_modules/twilio/lib/twiml/TwiML.d.ts
T
Bernt 6de2455917 v1.2.0: Add Global Markets footer, translated to 9 languages
- Added GLOBAL_MARKETS_TITLE to all translation files
- Updated footer with 12 markets (4 active + 8 upcoming)
- Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi
- Built and deployed to production
- CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
2026-07-08 19:56:03 +00:00

43 lines
955 B
TypeScript

/**
* Parent TwiML object
*/
export default class TwiML {
[key: string]: any;
response: any;
_propertyName: string;
constructor();
/**
* Because child elements have properties named after their class names, we need
* to translate that when we want to access that at the parent prototype level.
* So this will translate something like Say to 'say' and VoiceResponse to
* 'response'.
*/
_getXml(): any;
/**
* Convert to TwiML
*
* @returns TwiML XML
*/
toString(): any;
/**
* Add text under the TwiML node
*
* @param {string} content
*/
addText(content: string): void;
/**
* Add an arbitrary tag as a child.
*
* @param {string} content
*/
addChild(tagName: string, attributes: Object): GenericNode;
}
/**
* Generic node
*/
declare class GenericNode extends TwiML {
node: any;
constructor(node: any);
}
export {};