(alias: string)
| 379 | |
| 380 | export class InvalidSourceError extends QueryBuilderError { |
| 381 | constructor(alias: string) { |
| 382 | super( |
| 383 | `Invalid source for live query: The value provided for alias "${alias}" is not a Collection or subquery. Live queries only accept Collection instances or subqueries. Please ensure you're passing a valid Collection or QueryBuilder, not a plain array or other data type.`, |
| 384 | ) |
| 385 | } |
| 386 | } |
| 387 | |
| 388 | export type SourceClauseContext = |
nothing calls this directly
no outgoing calls
no test coverage detected