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,17 @@
import type { OperationNode } from './operation-node.js';
import type { PrimitiveValueListNode } from './primitive-value-list-node.js';
import type { ValueListNode } from './value-list-node.js';
export type ValuesItemNode = ValueListNode | PrimitiveValueListNode;
export interface ValuesNode extends OperationNode {
readonly kind: 'ValuesNode';
readonly values: ReadonlyArray<ValuesItemNode>;
}
type ValuesNodeFactory = Readonly<{
is(node: OperationNode): node is ValuesNode;
create(values: ReadonlyArray<ValuesItemNode>): Readonly<ValuesNode>;
}>;
/**
* @internal
*/
export declare const ValuesNode: ValuesNodeFactory;
export {};