import type { ValueObject } from 'jsonld'; import type { OrArray } from '../../util/Types'; import { FindOperator } from '../FindOperator'; // eslint-disable-next-line @typescript-eslint/naming-convention export function Equal>( value: T ): FindOperator { return new FindOperator({ operator: 'equal', value }); }