plywood-postgres-requester
Version:
Postgres requester for Plywood (within node)
10 lines (9 loc) • 346 B
TypeScript
import { PlywoodRequester, PlywoodLocator } from 'plywood-base-api';
export interface PostgresRequesterParameters {
locator?: PlywoodLocator;
host?: string;
user: string;
password: string;
database: string;
}
export declare function postgresRequesterFactory(parameters: PostgresRequesterParameters): PlywoodRequester<string>;