Files
evento/node_modules/kysely/dist/esm/operation-node/table-node.d.ts
2026-03-18 14:55:56 -03:00

17 lines
553 B
TypeScript

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 {};