UNPKG

@n3okill/utils

Version:
8 lines (7 loc) 250 B
/** * Check if two functions are equal. * @param {T} a - T, b: U * @param {U} b - U is the type of the second parameter. * @returns A boolean value. */ export declare function equalFunction<T extends Function, U extends T>(a: T, b: U): boolean;