country-seeker
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "country-seeker", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"types": "./types/index.d.ts", | ||
@@ -5,0 +5,0 @@ "description": "Get comprehensive country details with ease using country data", |
import { ICountryData, IType } from "./utils/types"; | ||
export declare const getCountries: () => ICountryData[]; | ||
export declare const useDialCode: ({ type }: { | ||
export declare const useCountry: ({ type, value }: { | ||
type: IType; | ||
}) => ICountryData | null | undefined; | ||
value: string; | ||
}) => ICountryData | ICountryData[] | null; | ||
export declare const useDialCode: ({ value }: { | ||
value: string; | ||
}) => ICountryData | ICountryData[]; | ||
export declare const useFlag: ({ value }: { | ||
value: string; | ||
}) => ICountryData | ICountryData[]; | ||
export declare const useCountryName: ({ value }: { | ||
value: string; | ||
}) => ICountryData | ICountryData[]; | ||
export declare const useCountryCode: ({ value }: { | ||
value: string; | ||
}) => ICountryData | ICountryData[]; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23280
118