Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
27 lines
1.2 KiB
Plaintext
27 lines
1.2 KiB
Plaintext
import { type MessageFormatElement, parse, type ParserOptions } from "@formatjs/icu-messageformat-parser";
|
|
import { type Formats, type Formatters, type FormatXMLElementFn, type MessageFormatPart, type PrimitiveType } from "./formatters.js";
|
|
export interface Options extends Omit<ParserOptions, "locale"> {
|
|
formatters?: Formatters;
|
|
}
|
|
export declare class IntlMessageFormat {
|
|
private readonly ast;
|
|
private readonly locales;
|
|
private readonly resolvedLocale?;
|
|
private readonly formatters;
|
|
private readonly formats;
|
|
private readonly message;
|
|
private readonly formatterCache;
|
|
constructor(message: string | MessageFormatElement[], locales?: string | string[], overrideFormats?: Partial<Formats>, opts?: Options);
|
|
format: <T = void>(values?: Record<string, PrimitiveType | T | FormatXMLElementFn<T>>) => string | T | (string | T)[];
|
|
formatToParts: <T>(values?: Record<string, PrimitiveType | T | FormatXMLElementFn<T>>) => MessageFormatPart<T>[];
|
|
resolvedOptions: () => {
|
|
locale: string;
|
|
};
|
|
getAst: () => MessageFormatElement[];
|
|
private static memoizedDefaultLocale;
|
|
static get defaultLocale(): string;
|
|
static resolveLocale: (locales: string | string[]) => Intl.Locale | undefined;
|
|
static __parse: typeof parse | undefined;
|
|
static formats: Formats;
|
|
}
|