UNPKG

@thisisagile/easy

Version:

Straightforward library for building domain-driven microservice architectures

3 lines (2 loc) 148 B
export type Func<T, Args = unknown> = (...args: Args[]) => T; export declare const isFunc: <T, Args>(o?: unknown) => o is (...params: Args[]) => T;