2 lines
139 B
TypeScript
2 lines
139 B
TypeScript
export default function first<T>(candidates: ((...args: any[]) => Promise<T | void> | T | void)[]): (...args: any[]) => Promise<T | void>;
|