UNPKG

@fluent/bundle

Version:

Localization library for expressive translations.

12 lines (11 loc) 484 B
/** * A JavaScript implementation of Project Fluent, a localization * framework designed to unleash the expressive power of the natural language. * * @module */ export type { Message } from "./ast.js"; export { FluentBundle, TextTransform } from "./bundle.js"; export { FluentResource } from "./resource.js"; export type { Scope } from "./scope.js"; export { FluentValue, FluentVariable, FluentType, FluentFunction, FluentNone, FluentNumber, FluentDateTime, } from "./types.js";