Interface SidetrackDatabaseClient
interface SidetrackDatabaseClient {    execute: <ResultRow>(        query: string,        params?: unknown[],    ) => Promise<{ rows: ResultRow[] }>;}  Properties
execute
execute: <ResultRow>(    query: string,    params?: unknown[],) => Promise<{ rows: ResultRow[] }> 
Database client for sidetrack. This allows you to use whatever database library you want as long as you conform to this interface.