Searched defs:AnyFunction (Results 1 – 3 of 3) sorted by relevance
2 export type AnyFunction<Result = any> = (...input: any[]) => Result alias
1 type AnyFunction = (...args: any[]) => any; alias
2178 export type AnyFunction = (...args: never[]) => void; alias