export type QueryResult = { rows: Row[]; }; export interface Queryable { query>( text: string, values?: readonly unknown[], ): Promise>; }