extendable-media-recorder
Version:
An extendable drop-in replacement for the native MediaRecorder.
9 lines (7 loc) • 337 B
text/typescript
import { TNativeBlobEventConstructor } from './native-blob-event-constructor';
import { TNativeMediaRecorderConstructor } from './native-media-recorder-constructor';
export type TWindow = Window &
typeof globalThis & {
BlobEvent?: TNativeBlobEventConstructor;
MediaRecorder?: TNativeMediaRecorderConstructor;
};