UNPKG

react-flags-select

Version:
9 lines (8 loc) 293 B
export type Countries = Record<string, string>; export type CountryCodes = Array<string>; export type CustomLabels = Record<string, string | CustomLabel>; export type CustomLabel = { primary: string; secondary?: string; }; export type OnSelect = (countryCode: string) => void;