plivo
Version:
A Node.js SDK to make voice calls and send SMS using Plivo and to generate Plivo XML
23 lines (22 loc) • 655 B
TypeScript
export class LookupResponse {
constructor(params: object);
apiId: string;
phoneNumber: string;
country: object;
format: object;
carrier: object;
resourceUri: string;
}
export class Number extends PlivoResource {
constructor(client: Function, data?: {});
[clientKey]: symbol;
}
export class LookupInterface extends PlivoResourceInterface {
constructor(client: Function, data?: {});
get(number: string, type?: string): Promise<LookupResponse>;
[clientKey]: symbol;
}
import { PlivoResource } from "../base";
declare const clientKey: unique symbol;
import { PlivoResourceInterface } from "../base";
export {};