mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-07-14 00:26:52 +02:00
14 lines
380 B
TypeScript
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
|