export type Maybe = T | undefined; export type Nullable = T | null; export type DataValidator = (data: T) => boolean | Promise;