Created
September 8, 2019 22:24
-
-
Save karol-majewski/237b73aaa34c7a38e44c20a3bb18a069 to your computer and use it in GitHub Desktop.
Composing TypeScript type guards
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
type TypeGuard<T = any, U extends T = any> = (candidate: T) => candidate is U; | |
type From<T extends TypeGuard> = | |
T extends TypeGuard<infer U, any> | |
? U | |
: never; | |
type To<T extends TypeGuard> = | |
T extends TypeGuard<any, infer U> | |
? U | |
: never; | |
declare function or<T extends TypeGuard, U extends TypeGuard>(f: T, g: U): TypeGuard<From<T | U>, To<T> | To<U>>; | |
declare function isString(candidate: any): candidate is string; | |
declare function isNumber(candidate: any): candidate is number; | |
const isStringOrNumber = or(isString, isNumber); | |
declare const input: any; | |
if (isStringOrNumber(input)) { | |
console.log(input.toString()); | |
} |
Author
karol-majewski
commented
Sep 10, 2019
Here is another alternative if someone is interested https://gist.github.com/safareli/8e480d72f7e2665b6030b9a08fe93f40
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment