toJson.d.ts 161 B

12345
  1. declare const toJson: (type: string, jsonld: any) => {
  2. __html: string;
  3. };
  4. export declare const stringify: (data: any) => string;
  5. export default toJson;