export type ComplexSerializableType = | undefined | null | number | string | boolean | Buffer | any | (() => ComplexSerializableType[] | Promise); export type PrimitiveSerializableType = | undefined | null | number | bigint | string | boolean | Buffer | (() => PrimitiveSerializableType[] | Promise); export type BufferSerializableType = | Buffer | (() => BufferSerializableType[] | Promise);