Files
beall-11ty/node_modules/bcp-47-normalize/lib/matches.d.ts

14 lines
209 B
TypeScript
Raw Normal View History

2026-03-31 16:38:22 -07:00
/**
* @typedef Change
* @property {string} from
* @property {string} to
*/
/**
* @type {Array<Change>}
*/
export const matches: Array<Change>;
export type Change = {
from: string;
to: string;
};