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 { AggregateFunctionNode } from '../../operation-node/aggregate-function-node.js';
import type { FunctionNode } from '../../operation-node/function-node.js';
import { OperationNodeTransformer } from '../../operation-node/operation-node-transformer.js';
import type { OperationNode } from '../../operation-node/operation-node.js';
import type { ReferencesNode } from '../../operation-node/references-node.js';
import { SchemableIdentifierNode } from '../../operation-node/schemable-identifier-node.js';
import type { SelectModifierNode } from '../../operation-node/select-modifier-node.js';
import type { QueryId } from '../../util/query-id.js';
export declare class WithSchemaTransformer extends OperationNodeTransformer {
#private;
constructor(schema: string);
protected transformNodeImpl<T extends OperationNode>(node: T, queryId: QueryId): T;
protected transformSchemableIdentifier(node: SchemableIdentifierNode, queryId: QueryId): SchemableIdentifierNode;
protected transformReferences(node: ReferencesNode, queryId: QueryId): ReferencesNode;
protected transformAggregateFunction(node: AggregateFunctionNode, queryId: QueryId): AggregateFunctionNode;
protected transformFunction(node: FunctionNode, queryId: QueryId): FunctionNode;
protected transformSelectModifier(node: SelectModifierNode, queryId: QueryId): SelectModifierNode;
}