Files
evento/node_modules/kysely/dist/esm/plugin/with-schema/with-schema-transformer.d.ts
2026-03-18 14:55:56 -03:00

19 lines
1.3 KiB
TypeScript

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