/** * Interface of the entity fields names only (without functions) */ export declare type EntityFieldsNames = { [P in keyof Entity]: Entity[P] extends Function ? never : P; }[keyof Entity];