Files
kst4contest/website/node_modules/bcp-47/lib/stringify.d.ts
T
2026-07-06 01:04:53 +02:00

14 lines
380 B
TypeScript

/**
* @import {Schema} from './parse.js'
*/
/**
* Compile a language schema to a BCP 47 language tag.
*
* @param {Partial<Schema> | null | undefined} [schema]
* Schema.
* @returns {string}
* BCP 47 tag.
*/
export function stringify(schema?: Partial<Schema> | null | undefined): string;
import type { Schema } from './parse.js';
//# sourceMappingURL=stringify.d.ts.map