Skip to content
This repository has been archived by the owner on Jul 2, 2021. It is now read-only.

Commit

Permalink
Use 'export type' for Deno 1.5 / --isolatedModules compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
jakajancar committed Nov 17, 2020
1 parent db4caa8 commit 7f4c547
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions src/mod.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,31 @@
export {
export type {
ConnectPgOptions,
} from './connect_options.ts'

export {
connectPg,
connectPg
} from './connection.ts'

export type {
PgConn,
} from './connection.ts'

export {
export type {
ErrorAndNoticeFields,
} from './message_types.ts'

export {
export type {
PreparedStatement,
} from './prepared_statement.ts'

export {
export type {
CompletionInfo,
QueryResult,
StreamingQueryResult,
BufferedQueryResult,
} from './query_result.ts'

export {
export type {
Notification,
PgError,
PgNotice,
Expand Down

0 comments on commit 7f4c547

Please sign in to comment.