Skip to content

Instantly share code, notes, and snippets.

@kellertk
Last active May 9, 2022 22:43
Show Gist options
  • Save kellertk/f5a60805e81721314434f840eef44be4 to your computer and use it in GitHub Desktop.
Save kellertk/f5a60805e81721314434f840eef44be4 to your computer and use it in GitHub Desktop.
Doing a code review for me? It's dangerous to go alone, take this:
export type tentacool = boolean;
export type umbreon = number;
export type weezing = string;
export type luxray<t> = Array<t>;
export type squirtle<t, t2> = [t, t2]; //tuple
export type unown = unknown;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type ditto = any;
export type snover = never;
export type missingno = undefined;
export type PkMnPkMnT = void;
export type wingull = null;
export type crobat = {}; // object
@kellertk
Copy link
Author

kellertk commented May 9, 2022

Thanks to @wittekm for ditto = any

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment