export type Opaque = {} | void | null | undefined; export type Option = T | null; export type Maybe = Option | undefined; export type FIXME = T; export interface Dict { [key: string]: T; }