helium/core/input.d.ts
Elmārs Āboliņš 3bd423243e help
2020-06-28 18:43:28 +03:00

6 lines
203 B
TypeScript

interface Subscription{
on():void;
off():void;
}
export default function input(it:string,cb:(x?:number,y?:number)=>void,doff?:boolean,x?:number,y?:number,w?:number,h?:number): Subscription;