UnparsedRow<T>
type UnparsedRow<T>: { [P in keyof T]: T[P] extends SQLFieldWithoutPostProcessing ? T[P] : T[P] extends Date ? ISODateTimeString : T[P] extends Iterable<infer U> ? Tagged<string, "RowArray", U> : Tagged<string, "RowField", T[P]> };
A row of data that has not been fully parsed by TypeORM.
Type Parameters
Type Parameter |
---|
T |