import { QTableProps } from "quasar"; export type QTableColumn< Row extends Record = any, Key = keyof Row extends string ? keyof Row : string, Field = Key | ((row: Row) => any) > = Omit[number], "field" | "format"> & { field: Field; format?: (val: any, row: Row) => string; };