16 lines
267 B
JavaScript
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
|