UNPKG

mui-language-picker

Version:
17 lines (16 loc) 860 B
import { LangTag } from './langPicker/types'; export declare const langTags: LangTag[]; export declare const hasExact: (tag: string) => boolean; export declare const getExact: (tag: string) => LangTag | undefined; export declare const hasPart: (tag: string) => boolean; export declare const getPart: (tag: string, limit?: number, start?: number) => { result: LangTag[]; index: number; } | undefined; export declare const getScripts: (code: string) => string[]; export declare const scriptName: Map<string, string>; export declare const fontMap: Map<string, string[]>; export declare const displayFamily: (familyId: string) => string; export declare const getFamily: (familyId: string) => import("./langPicker/types").IFamily; export declare const getLangTag: (tag: string) => LangTag | undefined; export declare const getRtl: (tag: string) => boolean;