diff --git a/src/operators.ts b/src/operators.ts index 689aa2b..d2072a6 100644 --- a/src/operators.ts +++ b/src/operators.ts @@ -6,7 +6,7 @@ import type { NodeRef, Realm } from './realm' * @typeParam Out - The type of values that the resulting node will emit. * @category Operators */ -export type Operator = (source: NodeRef, realm: Realm) => NodeRef +export type Operator = (source: NodeRef) => NodeRef /** * Shorter alias for {@link Operator}, to avoid extra long type signatures.