export type PartialBy = Omit & Partial> /** Because the db-class fields are defined based on their "in table" state, this means the "id" field is "required" (as seen by TypeScript and ajv) * Thus, we can use this NoID helper to make creating new instances a bit easier: `let newInstance = {} as NoID;`*/ //export type NoID = Omit & {id?: string}; export type NoID = PartialBy;