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,18 @@
import type { OperationNode } from './operation-node.js';
import type { CommonTableExpressionNode } from './common-table-expression-node.js';
export type WithNodeParams = Omit<WithNode, 'kind' | 'expressions'>;
export interface WithNode extends OperationNode {
readonly kind: 'WithNode';
readonly expressions: ReadonlyArray<CommonTableExpressionNode>;
readonly recursive?: boolean;
}
type WithNodeFactory = Readonly<{
is(node: OperationNode): node is WithNode;
create(expression: CommonTableExpressionNode, params?: WithNodeParams): Readonly<WithNode>;
cloneWithExpression(withNode: WithNode, expression: CommonTableExpressionNode): Readonly<WithNode>;
}>;
/**
* @internal
*/
export declare const WithNode: WithNodeFactory;
export {};