Files
hoppscotch/helpers/lenses/jsonLens.js
2021-08-16 23:15:06 +05:30

12 lines
285 B
JavaScript

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