rubenfR
Windmill3y ago
7 replies
rubenf
Before:
import type Resource from https://...
export async function main(db: Resource<'postgresql'>)


After:
type Postgresql = {
  host: string,
  port: number,
  user: string,
  dbname: string,
  sslmode: string,
  password: string

}

OR

type Postgresql = object

export async function main(db: Postgresql) 
Was this page helpful?