jsonLens.js 285 B

1234567891011
  1. import { isJSONContentType } from "../utils/contenttypes"
  2. const jsonLens = {
  3. lensName: "response.json",
  4. isSupportedContentType: isJSONContentType,
  5. renderer: "json",
  6. rendererImport: () =>
  7. import("~/components/lenses/renderers/JSONLensRenderer"),
  8. }
  9. export default jsonLens