template.d.ts 252 B

1234567
  1. /**
  2. * 简单的模板引擎,使用方式如下(空格自动忽略):
  3. * template('hello, {name}', { name: 'AntV' }); // hello, AntV
  4. * @param string
  5. * @param options
  6. */
  7. export declare function template(source: string, data?: object): string;