Skip to content

Commit daac11f

Browse files
committed
fix(types): Add missing result undefined type to store factory when id option is used
1 parent f29902f commit daac11f

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

types/index.d.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -147,10 +147,18 @@ declare module "hybrids" {
147147
Model: Model<M>,
148148
options: {
149149
id?: keyof E | ((host: E) => ModelIdentifier);
150-
draft?: boolean;
150+
draft: true;
151151
},
152152
): Descriptor<E, M>;
153153

154+
function store<E, M>(
155+
Model: Model<M>,
156+
options: {
157+
id?: keyof E | ((host: E) => ModelIdentifier);
158+
draft?: false;
159+
},
160+
): Descriptor<E, M extends { id: any } ? M | undefined : M>;
161+
154162
namespace store {
155163
const connect = "__store__connect__";
156164

0 commit comments

Comments
 (0)