language-tools
language-tools copied to clipboard
bug(highlighting): Multi-line return type breaks inline sql highlighting for `queryRaw`
Bug description
Bug report extracted from #1219
// This works
prisma.$queryRaw<{ id: number }[]>`
SELECT id from machine
`
// This does not work
prisma.$queryRaw<{
id: number
}[]>`
SELECT id from machine
`