mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-25 22:07:10 -06:00
8 lines
276 B
TypeScript
8 lines
276 B
TypeScript
export function camelCaseRequestWrapper(requestFunc: any): (method: string, action: string, params: object) => any;
|
|
export function validateSpeakAttributes(content: any, voice: any): {
|
|
success: boolean;
|
|
msg?: undefined;
|
|
} | {
|
|
success: boolean;
|
|
msg: string;
|
|
};
|