diff --git a/src/storage-lib/base/plain-object.ts b/src/storage-lib/base/plain-object.ts index 051e1f5..4716111 100644 --- a/src/storage-lib/base/plain-object.ts +++ b/src/storage-lib/base/plain-object.ts @@ -1,3 +1,5 @@ import { BaseModel } from "./base-model"; -export type PlainObject = Omit; \ No newline at end of file +type MakeOptional = Omit & Partial>; + +export type PlainObject = MakeOptional; \ No newline at end of file