I just need to implement instascan with typescript, but i cant find any information on internet about its types. I tried to declare and export "fake" modules, but i cant handle it works
/index.d.ts
declare module "Instascan" {
export class Camera {
//..
}
}
/main.ts
import {Camera} from "Instascan";
// .. //