wix-incubator / corvid-types

Type definitions for Corvid by Wix
MIT License
5 stars 3 forks source link

Patch for wix auth #80

Closed yaron-miron closed 2 years ago

yaron-miron commented 2 years ago

wix-auth has a single elevate function that comes as follows in a dts:

declare module 'wix-auth' {
  function elevate(functionName: Function): Function;
}

the patch changes it to be

declare module 'wix-auth' {
    function elevate<T extends (...arg: any) => any>(func: T): (...param: Parameters<T>) => ReturnType<T>;
}