interface PostgresClientType {
    end: (() => Promise<void>);
    query: ((text: string, values?: any[]) => Promise<PostgresQueryResultType>);
}

Properties

Properties

end: (() => Promise<void>)
query: ((text: string, values?: any[]) => Promise<PostgresQueryResultType>)