StoreListenerFilters
See source codeTable of contents
Filters for store listeners to control which changes trigger the listener.
interface StoreListenerFilters {}Example
const filters: StoreListenerFilters = {
source: 'user', // Only listen to user changes
scope: 'document', // Only listen to document-scoped records
}Properties
scope
Filter by the scope of records
scope: 'all' | RecordScopesource
Filter by the source of changes
source: 'all' | ChangeSourcePrev
StoreErrorNext
StoreSchemaOptions