We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e7d6e6e + 95a8e22 commit 9f7613dCopy full SHA for 9f7613d
src/Types/index.ts
@@ -1,10 +1,10 @@
1
import { SuggestionResult } from "../Documents/Queries/Suggestions/SuggestionResult";
2
3
-export interface EntitiesCollectionObject<TEntity> extends IRavenObject<TEntity> {
+export interface EntitiesCollectionObject<TEntity> extends IRavenObject<TEntity | null> {
4
[id: string]: TEntity | null;
5
}
6
7
-export interface RevisionsCollectionObject<TEntity> extends IRavenObject<TEntity> {
+export interface RevisionsCollectionObject<TEntity> extends IRavenObject<TEntity | null> {
8
[changeVector: string]: TEntity | null;
9
10
0 commit comments