/opt/canhelp/node_modules/kysely/dist/esm/query-executor
NameSizeModeActions
default-query-executor.d.ts22290644editdlrm
default-query-executor.js15020644editdlrm
noop-query-executor.d.ts18880644editdlrm
noop-query-executor.js11860644editdlrm
query-executor-base.d.ts30010644editdlrm
query-executor-base.js23570644editdlrm
query-executor-provider.d.ts1680644editdlrm
query-executor-provider.js680644editdlrm
query-executor.d.ts30050644editdlrm
query-executor.js590644editdlrm
Edit: /opt/canhelp/node_modules/kysely/dist/esm/query-executor/noop-query-executor.d.ts (1888B)
import type { CompiledQuery } from '../query-compiler/compiled-query.js'; import type { KyselyPlugin } from '../plugin/kysely-plugin.js'; import type { DialectAdapter } from '../dialect/dialect-adapter.js'; import { QueryExecutorBase } from './query-executor-base.js'; /** * A {@link QueryExecutor} subclass that can be used when you don't * have a {@link QueryCompiler}, {@link ConnectionProvider} or any * other needed things to actually execute queries. */ export declare class NoopQueryExecutor extends QueryExecutorBase { /** * Returns the adapter for the current dialect. */ get adapter(): DialectAdapter; /** * Compiles the transformed query into SQL. You usually want to pass * the output of {@link transformQuery} into this method but you can * compile any query using this method. */ compileQuery(): CompiledQuery; /** * Provides a connection for the callback and takes care of disposing * the connection after the callback has been run. */ provideConnection(): Promise; /** * Returns a copy of this executor with a new connection provider. */ withConnectionProvider(): NoopQueryExecutor; /** * Returns a copy of this executor with a plugin added as the * last plugin. */ withPlugin(plugin: KyselyPlugin): NoopQueryExecutor; /** * Returns a copy of this executor with a list of plugins added * as the last plugins. */ withPlugins(plugins: ReadonlyArray): NoopQueryExecutor; /** * Returns a copy of this executor with a plugin added as the * first plugin. */ withPluginAtFront(plugin: KyselyPlugin): NoopQueryExecutor; /** * Returns a copy of this executor without any plugins. */ withoutPlugins(): NoopQueryExecutor; } export declare const NOOP_QUERY_EXECUTOR: NoopQueryExecutor;