Files
2026-02-10 01:14:19 +00:00

3 lines
142 B
TypeScript

/** Conveniently represents flow's "Maybe" type https://flow.org/en/docs/types/maybe/ */
export declare type Maybe<T> = null | undefined | T;