UNPKG

embedded-postgres

Version:

A package to run an embedded Postgresql database right from NodeJS

8 lines (7 loc) 193 B
export declare type PostgresBinaries = { postgres: string; pg_ctl: string; initdb: string; }; declare function getBinaries(): Promise<PostgresBinaries>; export default getBinaries;