json-to-html.d.ts 245 B

12345678
  1. // Type definitions for json2html v0.1.2
  2. // https://github.com/frozzare/json-to-html
  3. // Definitions by: Steven Silvester <https://github.com/blink1073>
  4. declare module 'json-to-html' {
  5. function render(value: any): string;
  6. export = render;
  7. }