Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
aqrln committed Jan 20, 2025
1 parent db04604 commit 5fc1879
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions libs/driver-adapters/executor/src/query-compiler.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { ConnectionInfo } from "@prisma/driver-adapter-utils";
import { __dirname } from "./utils";
import { AdapterFlavour } from "query-engine-wasm-baseline";

export type QueryCompilerParams = {
// TODO: support multiple datamodels
datamodel: string;
flavour: AdapterFlavour;
flavour: 'postgres' | 'mysql' | 'sqlite';
connectionInfo: ConnectionInfo;
};

Expand Down

0 comments on commit 5fc1879

Please sign in to comment.