@lion/localize
Version:
The localization system helps to manage localization data split into locales and automate its loading
15 lines (14 loc) • 692 B
TypeScript
/**
* Normalizes function "formatNumberToParts"
*
* @typedef {import('../../../../types/LocalizeMixinTypes').FormatNumberPart} FormatNumberPart
* @param {FormatNumberPart[]} formattedParts
* @param {import('../../../../types/LocalizeMixinTypes').FormatNumberOptions} options
* @param {string} _locale
* @returns {FormatNumberPart[]}
*/
export function normalizeIntl(formattedParts: FormatNumberPart[], options: import("../../../../types/LocalizeMixinTypes.js").FormatNumberOptions | undefined, _locale: string): FormatNumberPart[];
/**
* Normalizes function "formatNumberToParts"
*/
export type FormatNumberPart = import("../../../../types/LocalizeMixinTypes.js").FormatNumberPart;