Skip to content

Instantly share code, notes, and snippets.

@RadoslawB
Last active August 8, 2019 08:16
Show Gist options
  • Save RadoslawB/7ad40617cbe210b6058697da5f1b00c4 to your computer and use it in GitHub Desktop.
Save RadoslawB/7ad40617cbe210b6058697da5f1b00c4 to your computer and use it in GitHub Desktop.
type Nullable<T> = T | null;
type Falsy<T> = T | false | undefined | null;
interface Dictionary<T> {
[P: string]: T;
}
type BooleanDict = Dictionary<Boolean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment