Merge pull request #113 from sha-N/patch-1

fixes type error in function wrapFunctionAsNode
This commit is contained in:
Javi Agenjo
2020-04-15 10:48:42 +02:00
committed by GitHub

2
src/litegraph.d.ts vendored
View File

@@ -242,7 +242,7 @@ export const LiteGraph: {
wrapFunctionAsNode(
name: string,
func: (...args: any[]) => any,
param_types?: [],
param_types?: string[],
return_type?: string,
properties?: object
): void;