/** * Server-side membership for a live view: does one record belong to a view, * given that view's filters? * * The rule is evaluated per streamed record, so a change is routed to the * views that want it without asking the database. */ /** * Bunderstack's filter contract — a scalar is `=`, an array is `IN`, `null` is * `IS NULL` — evaluated against one record. The string `'null'` means the same * as `null`, because a query string cannot carry a real null. */ export declare function matchesLiveFilters(record: Record, filters: Record | undefined): boolean; //# sourceMappingURL=live-view.d.ts.map