/** * Make all properties in T optional */ export declare type QueryPartialEntity = { [P in keyof T]?: T[P] | (() => string); };