json-to-html.d.ts 196 B

1234567
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. declare module 'json-to-html' {
  4. function render(value: any): string;
  5. export = render;
  6. }