Files
Astro-Component/src/global.d.ts
T

20 lines
395 B
TypeScript

import type FlvJs from 'flv.js';
import Hls from 'hls.js';
declare global {
interface Window {
schema: any;
submit: any;
upload: any;
fetchData: any;
columnsRenderer: any
myModal_open: any;
myModal_close: any;
hls: typeof Hls,
flvjs: typeof FlvJs
classNames: any;
checkDetails: any;
}
}
export { }