12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import { Lens } from "./lenses"
|
|
|
|
const rawLens: Lens = {
|
|
lensName: "response.raw",
|
|
isSupportedContentType: () => true,
|
|
renderer: "raw",
|
|
rendererImport: () =>
|
|
import("~/components/lenses/renderers/RawLensRenderer.vue"),
|
|
}
|
|
|
|
export default rawLens
|