Initial commit: 11ty website with Fire/Frost branding

This commit is contained in:
The Trinity
2026-04-02 18:39:00 -05:00
commit 40b45dff2e
1646 changed files with 329080 additions and 0 deletions

29
node_modules/bcp-47/lib/parse.d.ts generated vendored Normal file
View File

@@ -0,0 +1,29 @@
/**
* Parse a BCP 47 language tag.
*
* @param {string} tag
* @param {Options} [options]
* @returns {Schema}
*/
export function parse(tag: string, options?: Options | undefined): Schema
export type Warning = (reason: string, code: number, offset: number) => void
export type Options = {
normalize?: boolean | undefined
forgiving?: boolean | undefined
warning?: Warning | undefined
}
export type Extension = {
singleton: string
extensions: Array<string>
}
export type Schema = {
language: string | null | undefined
extendedLanguageSubtags: Array<string>
script: string | null | undefined
region: string | null | undefined
variants: Array<string>
extensions: Array<Extension>
privateuse: Array<string>
irregular: string | null | undefined
regular: string | null | undefined
}