6 lines
90 B
TypeScript
6 lines
90 B
TypeScript
interface IVideoCapturer {
|
|
imageData: ImageData | null
|
|
}
|
|
|
|
export default IVideoCapturer
|