Interface PostgresClientType

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

Properties

Properties

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