plivo-node/types/rest/utils.d.ts
2021-01-06 15:57:51 +05:30

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;
};