| 7 | export type JsonValue = unknown; |
| 8 | |
| 9 | export interface PostgresQueryable { |
| 10 | query<T extends QueryResultRow = QueryResultRow>(text: string, values?: unknown[]): Promise<QueryResult<T>>; |
| 11 | } |
| 12 | |
| 13 | export function newId(): string { |
| 14 | return randomUUID(); |
no outgoing calls
no test coverage detected