UNPKG

country-linkify

Version:

Simple service to redirect links based on the client's country.

12 lines (11 loc) 209 B
export interface Link { id: "default" | "search" | string; source: string; urls: { [country: string]: string[]; }; } export interface TargetURL { url: string; source: string; }