dns-witch.net.eu.org/node_modules/bcp-47-normalize/lib/matches.d.ts
2025-07-05 18:19:59 +02:00

13 lines
209 B
TypeScript

/**
* @typedef Change
* @property {string} from
* @property {string} to
*/
/**
* @type {Array<Change>}
*/
export const matches: Array<Change>;
export type Change = {
from: string;
to: string;
};