UNPKG

cdk-amazon-chime-resources

Version:

![Experimental](https://img.shields.io/badge/experimental-important.svg?style=for-the-badge)

15 lines (14 loc) 543 B
import { PhoneNumberType, PhoneProductType } from '../../pstn/phoneNumber'; export interface CreatePhoneNumberProps { phoneState?: string; phoneAreaCode?: string; phoneCity?: string; phoneCountry?: string; phoneNumberTollFreePrefix?: string; phoneProductType?: PhoneProductType; phoneNumberType?: PhoneNumberType; } export declare const CreatePhoneNumber: (uid: string, props: CreatePhoneNumberProps) => Promise<{ phoneNumber: string; }>; export declare const DeletePhoneNumber: (uid: string) => Promise<void>;