blob: b0aba8f81f1636e07e20dbc4a8e3bff7b13a88ab [file] [log] [blame] [edit]
import { Template, Strategy } from './models';
export interface ParseLiteralsOptions {
fileName?: string;
strategy?: Partial<Strategy<any>>;
}
export declare function parseLiterals(source: string, options?: ParseLiteralsOptions): Template[];