messageformat
Version:
Intl.MessageFormat / Unicode MessageFormat 2 parser, runtime and polyfill
11 lines (10 loc) • 340 B
TypeScript
/**
* Tools for working with a concrete syntax tree ({@link CST}) representation of MF2 messages.
*
* @module
*/
import type * as CST from './types.ts';
export type { CST };
export { parseCST } from './parse-cst.ts';
export { stringifyCST } from './stringify-cst.ts';
export { cstKey, messageFromCST } from '../data-model/from-cst.ts';