Files
hoppscotch/helpers/lenses/imageLens.js
2020-06-23 02:57:58 -04:00

16 lines
267 B
JavaScript

const imageLens = {
lensName: "Image",
supportedContentTypes: [
"image/gif",
"image/jpeg",
"image/png",
"image/bmp",
"image/svg+xml",
"image/x-icon",
"image/vnd.microsoft.icon",
],
renderer: "imageres",
}
export default imageLens