mirror of
https://github.com/donl/plivo-node.git
synced 2026-05-25 22:07:10 -06:00
22 lines
655 B
TypeScript
22 lines
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 {};
|