find-user-country
Version:
Find your user country
8 lines (7 loc) • 312 B
TypeScript
import { FindUserCountryType } from "./types";
/**
* @description User country code is matched any country code when reload page with user country code.
* @param {FindUserCountryType} options
*/
declare function findUserCountry(options?: FindUserCountryType): Promise<string>;
export default findUserCountry;