Files
fedi-classifieds/node_modules/bcp-47-normalize/lib/matches.d.ts
2026-04-29 08:30:52 -07:00

14 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;
};