Created
September 26, 2022 04:27
-
-
Save devinrhode2/94166b4bf571149b12c74a7aef3899d0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
declare module "redux" { | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
function compose( | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
a: never, | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
b: never, | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
c: never, | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
d: never, | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
e: never, | |
/** Replace `compose(a, b, c)` with `(...args)=>a(b(c(...args)))` */ | |
f: never, | |
): never | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment