CellOrValueFromSchemaType
Type extends readonly infer Type[] ? CellOrValueFromSchemaType<Type> : Type extends "string" ? string : Type extends "number" ? number : Type extends "boolean" ? boolean : Type extends "object" ? AnyObject : Type extends "array" ? AnyArray : never