Skip to content

Commit

Permalink
quickfix: make mysql port prop optional
Browse files Browse the repository at this point in the history
  • Loading branch information
geclos committed Jul 4, 2024
1 parent 25444d8 commit 4e69c6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/connectors/mysql/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ type SSLOptions = boolean | 'Amazon RDS' | SSLConfig
export type ConnectionParams = {
host: string
user: string
port: number
password: string
database: string
port?: number
ssl?: SSLOptions
}

Expand Down

0 comments on commit 4e69c6e

Please sign in to comment.