export type OrNull = T | null; export type OrUndefined = T | undefined; export type Maybe = OrNull>; export type StringMap = { [key: string]: V };