/** * @typedef {Partial} Schema * @typedef {Partial} 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 export type Extension = Partial