Initial commit - Event Planner application
This commit is contained in:
18
node_modules/kysely/dist/esm/plugin/with-schema/with-schema-transformer.d.ts
generated
vendored
Normal file
18
node_modules/kysely/dist/esm/plugin/with-schema/with-schema-transformer.d.ts
generated
vendored
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user