porsager/postgres

The type passed into the generic shouldn't have to be specified as an array

Open

#647 aperta il 20 lug 2023

Vedi su GitHub
 (1 commento) (0 reazioni) (0 assegnatari)JavaScript (230 fork)batch import
Typescripthelp wanted

Metriche repository

Star
 (6221 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

Currently using the library you would pass your type as such

type User = {
  email: string
  password: string
}

const [user] = await sql<U͟s͟e͟r[]>`
  SELECT * FROM example;
`;

console.log(user.email);

Though its not a huge deal I feel as code quality would be better with simply omitting it

type User = {
  email: string
  password: string
}

const [user] = await sql<U͟s͟e͟r>`
  SELECT * FROM example;
`;

console.log(user.email);

You can even see an example of this on the typescript documentation

Guida contributor