diff options
Diffstat (limited to 'node_modules/bcp-47-normalize/lib/matches.d.ts')
| -rw-r--r-- | node_modules/bcp-47-normalize/lib/matches.d.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/node_modules/bcp-47-normalize/lib/matches.d.ts b/node_modules/bcp-47-normalize/lib/matches.d.ts new file mode 100644 index 0000000..99cda6e --- /dev/null +++ b/node_modules/bcp-47-normalize/lib/matches.d.ts @@ -0,0 +1,13 @@ +/** + * @typedef Change + * @property {string} from + * @property {string} to + */ +/** + * @type {Array<Change>} + */ +export const matches: Array<Change>; +export type Change = { + from: string; + to: string; +}; |
