This commit is contained in:
qfx 2020-02-19 23:14:40 +02:00
parent 16cbc612a5
commit 48ee44a34b

2
init.d.ts vendored
View File

@ -28,6 +28,6 @@ interface HeliumElement{
declare function HeliumLoader(filepath:string):(params:parameters, w:number, h:number)=>HeliumElement; declare function HeliumLoader(filepath:string):(params:parameters, w:number, h:number)=>HeliumElement;
export module helium{ export module helium{
export let input: typeof import("./helium/core/input") ; export let input: typeof import("./core/input") ;
} }
export function helium<T>(chunk:(params:T,state:state,view:view)=>()=>void):(params:T, w:number, h:number)=>HeliumElement; export function helium<T>(chunk:(params:T,state:state,view:view)=>()=>void):(params:T, w:number, h:number)=>HeliumElement;