Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import type { JSONOperatorChainNode } from './json-operator-chain-node.js';
import type { JSONPathNode } from './json-path-node.js';
import type { OperationNode } from './operation-node.js';
import type { ReferenceNode } from './reference-node.js';
export interface JSONReferenceNode extends OperationNode {
readonly kind: 'JSONReferenceNode';
readonly reference: ReferenceNode;
readonly traversal: JSONPathNode | JSONOperatorChainNode;
}
type JSONReferenceNodeFactory = Readonly<{
is(node: OperationNode): node is JSONReferenceNode;
create(reference: ReferenceNode, traversal: JSONPathNode | JSONOperatorChainNode): Readonly<JSONReferenceNode>;
cloneWithTraversal(node: JSONReferenceNode, traversal: JSONPathNode | JSONOperatorChainNode): Readonly<JSONReferenceNode>;
}>;
/**
* @internal
*/
export declare const JSONReferenceNode: JSONReferenceNodeFactory;
export {};