(value: unknown)
| 54 | $$exists: boolean; |
| 55 | } |
| 56 | export function isExistsOperator(value: unknown): value is ExistsOperator { |
| 57 | return typeof value === 'object' && value != null && '$$exists' in value; |
| 58 | } |
| 59 | export interface TypeOperator { |
| 60 | $$type: OneOrMore<BSONTypeAlias>; |
| 61 | } |
no outgoing calls
no test coverage detected