feat: add support to audio and video API responses (#3044)

This commit is contained in:
Liyas Thomas
2023-05-25 01:46:14 +05:30
committed by GitHub
parent 9dbdef9286
commit ddaec1b9ac
6 changed files with 196 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ import imageLens from "./imageLens"
import htmlLens from "./htmlLens"
import xmlLens from "./xmlLens"
import pdfLens from "./pdfLens"
import audioLens from "./audioLens"
import videoLens from "./videoLens"
import { defineAsyncComponent } from "vue"
export type Lens = {
@@ -20,6 +22,8 @@ export const lenses: Lens[] = [
htmlLens,
xmlLens,
pdfLens,
audioLens,
videoLens,
rawLens,
]