fix: align embedded postgres ctor types with initdbFlags usage
This commit is contained in:
parent
0b8223b8b9
commit
24d6e3a543
2 changed files with 2 additions and 0 deletions
|
|
@ -83,6 +83,7 @@ type EmbeddedPostgresCtor = new (opts: {
|
|||
password: string;
|
||||
port: number;
|
||||
persistent: boolean;
|
||||
initdbFlags?: string[];
|
||||
onLog?: (message: unknown) => void;
|
||||
onError?: (message: unknown) => void;
|
||||
}) => EmbeddedPostgresInstance;
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@ type EmbeddedPostgresCtor = new (opts: {
|
|||
password: string;
|
||||
port: number;
|
||||
persistent: boolean;
|
||||
initdbFlags?: string[];
|
||||
onLog?: (message: unknown) => void;
|
||||
onError?: (message: unknown) => void;
|
||||
}) => EmbeddedPostgresInstance;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue