import {ITable} from "../table"; /* Represents a row of the table, when retrieved from MySQL. */ export type Row = ( { readonly [columnName in Extract] : ( ReturnType ) } );