Skip to content

Commit

Permalink
feat: PG allow providing a function for password (#5673)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbiet480 committed May 16, 2020
1 parent 2066734 commit 265d1ae
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@ export interface PostgresConnectionCredentialsOptions {
/**
* Database password.
*/
readonly password?: string;
readonly password?: string | (() => string) | (() => Promise<string>);

/**
* Database name to connect to.
Expand Down

0 comments on commit 265d1ae

Please sign in to comment.