Skip to content

Commit

Permalink
fix(datasource-sql): export missing types (#737)
Browse files Browse the repository at this point in the history
  • Loading branch information
Scra3 authored Jun 19, 2023
1 parent 6d3aea1 commit 4fa72e3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/datasource-sql/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Table } from './introspection/types';
import type { PlainConnectionOptions, PlainConnectionOptionsOrUri } from './types';
import type { PlainConnectionOptions, PlainConnectionOptionsOrUri, SslMode } from './types';
import type { DataSourceFactory, Logger } from '@forestadmin/datasource-toolkit';

import { SequelizeDataSource } from '@forestadmin/datasource-sequelize';
Expand Down Expand Up @@ -67,3 +67,4 @@ export async function preprocessOptions(
}

export * from './connection/errors';
export type { PlainConnectionOptionsOrUri as ConnectionOptions, Table, SslMode };

0 comments on commit 4fa72e3

Please sign in to comment.