Skip to content

Commit

Permalink
refactor: explicit exports
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Oct 9, 2024
1 parent b36150e commit f5c30bf
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
export * from "./database";
export * from "./types";
export {
createDatabase
} from "./database";

export type {
Connector,
Database,
ExecResult,
Primitive,
SQLDialect,
Statement
} from "./types";

/**
* A mapping of available database connector identifiers to their module paths.
Expand Down

0 comments on commit f5c30bf

Please sign in to comment.