strTpl.d.ts 127 B

12345
  1. import types = require('./types');
  2. declare function strTpl(str: string, data: types.PlainObj<any>): string;
  3. export = strTpl;