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,16 @@
import type { OperationNode } from './operation-node.js';
import { SchemableIdentifierNode } from './schemable-identifier-node.js';
export interface TableNode extends OperationNode {
readonly kind: 'TableNode';
readonly table: SchemableIdentifierNode;
}
type TableNodeFactory = Readonly<{
is(node: OperationNode): node is TableNode;
create(table: string): Readonly<TableNode>;
createWithSchema(schema: string, table: string): Readonly<TableNode>;
}>;
/**
* @internal
*/
export declare const TableNode: TableNodeFactory;
export {};