You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
329 B

import { IParseOptions } from './parser';
import { Options, MessageFormatElement } from './types';
export * from './types';
export * from './parser';
export * from './skeleton';
export declare type ParseOptions = Options & IParseOptions;
export declare function parse(input: string, opts?: ParseOptions): MessageFormatElement[];