UNPKG

@antv/g2plot

Version:

An interactive and responsive charting library

8 lines (7 loc) 252 B
/** * 简单的模板引擎,使用方式如下(空格自动忽略): * template('hello, {name}', { name: 'AntV' }); // hello, AntV * @param string * @param options */ export declare function template(source: string, data?: object): string;