UNPKG

@graphql-mesh/transport-sqlite

Version:
10 lines (9 loc) 431 B
import { type Executor } from '@graphql-mesh/transport-common'; import { type MaybePromise } from '@whatwg-node/promise-helpers'; export interface SQLiteTransportOptions { type: 'infile' | 'db'; } declare const _default: { getSubgraphExecutor({ cwd, transportEntry }: import("@graphql-mesh/transport-common").TransportGetSubgraphExecutorOptions<SQLiteTransportOptions>): MaybePromise<Executor>; }; export default _default;