This commit is contained in:
2026-03-31 16:38:22 -07:00
commit 38940436a7
2112 changed files with 376929 additions and 0 deletions

13
node_modules/bcp-47/lib/stringify.d.ts generated vendored Normal file
View File

@ -0,0 +1,13 @@
/**
* @typedef {Partial<import('./parse.js').Schema>} Schema
* @typedef {Partial<import('./parse.js').Extension>} Extension
*/
/**
* Compile a language schema to a BCP 47 language tag.
*
* @param {Schema} schema
* @returns {string}
*/
export function stringify(schema?: Schema): string
export type Schema = Partial<import('./parse.js').Schema>
export type Extension = Partial<import('./parse.js').Extension>