Files
hoppscotch/helpers/lenses/jsonLens.js
2021-05-18 14:57:29 +05:30

12 lines
276 B
JavaScript

import { isJSONContentType } from "../utils/contenttypes"
const jsonLens = {
lensName: "JSON",
isSupportedContentType: isJSONContentType,
renderer: "json",
rendererImport: () =>
import("~/components/lenses/renderers/JSONLensRenderer"),
}
export default jsonLens