feat: request builder option fillStore

This commit is contained in:
2024-01-18 13:06:52 +00:00
parent f20cd8a119
commit 3ff651ec37
2 changed files with 11 additions and 1 deletions

View File

@ -58,6 +58,12 @@ export interface RequestBuilderOptions {
* How many milli-seconds to wait to allow grouping
*/
groupingDelay?: number;
/**
* If events should be added automatically to the internal NoteCollection
* default=true
*/
fillStore?: boolean;
}
/**