hojas/node_modules/speech-rule-engine/mjs/l10n/locale.d.ts

18 lines
487 B
TypeScript
Raw Permalink Normal View History

2026-05-14 10:56:04 +02:00
import { Alphabets, Functions, Messages, Numbers, SubIso } from './messages.js';
import * as tr from './transformers.js';
export interface Locale {
FUNCTIONS: Functions;
MESSAGES: Messages;
ALPHABETS: Alphabets;
NUMBERS: Numbers;
COMBINERS?: {
[key: string]: tr.Combiner;
};
CORRECTIONS?: {
[key: string]: (a: string) => string;
};
SUBISO: SubIso;
}
export declare const LOCALE: Locale;
export declare function createLocale(): Locale;