kysely-org / kysely

A type-safe typescript SQL query builder
https://kysely.dev
MIT License
9.9k stars 249 forks source link

Deno docs bug #936

Closed kolay-v closed 3 months ago

kolay-v commented 3 months ago

Hi. I found misstake in getting started guide. It says

import { Pool } from 'pg-pool'

but actually pg-pool exports pool as default export and this code doesnt work error: Uncaught SyntaxError: The requested module 'pg-pool' does not provide an export named 'Pool' should be

import Pool from 'pg-pool'

https://www.kysely.dev/docs/getting-started?package-manager=deno&dialect=postgresql#instantiation

igalklebanov commented 3 months ago

Hey 👋

Thank you! 💪

PR's welcome.