export type Option<T> = T | undefined;
export type Nullable<T> = T | null | undefined;

Homonyms

cyb/src/types/index.d.ts

Graph