Hi guys,
I wanted to use the ‘dat.GUI’ library in our Playground but with Typescript.
If I try to reference ‘dat’ I get my fingers beaten with the message:
Cannot find name ‘dat’.
Are the types missing for the lib? Do I try to use it wrong? Any help appreciated!
So far I used a dirty workaround and declared the dat just as any (which feels kinda stupid )
declare var dat: any;