Files
IDP-Frontend/components/PhoneInput/types.ts

9 lines
199 B
TypeScript

import type { CountryCallingCode, CountryCode } from "libphonenumber-js";
export type Country = {
code: CountryCode;
name: string;
emoji: string;
callingCode: CountryCallingCode;
};