sam522's picture
node
d4b85c0
raw
history blame contribute delete
142 Bytes
/** Conveniently represents flow's "Maybe" type https://flow.org/en/docs/types/maybe/ */
export declare type Maybe<T> = null | undefined | T;