UNPKG

react-qrcode-scan

Version:

React componnent write by typescript for scan qrcode base on instascan.js

12 lines (11 loc) 300 B
declare class Camera { id: string; name: string | null; _stream: any; constructor(id: string, name: string | null); start(): Promise<any>; stop(): void; static getCameras(): Promise<Camera[]>; static _ensureAccess(): Promise<void>; } export default Camera;