Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/kysely_postgrs_js_dialect/deps.ts>kysely.Tarn

Kysely dialect for PostgreSQL using the Postgres.js client.
Go to Latest
interface kysely.Tarn
import { type kysely } from "https://deno.land/x/kysely_postgrs_js_dialect@v0.27.3/deps.ts";
const { Tarn } = kysely;

Properties

options: Omit<TarnPoolOptions<any>, "create" | "destroy" | "validate">

Tarn.js' pool options, excluding create, destroy and validate functions, which must be implemented by this dialect.

Pool: TarnPool

Tarn.js' Pool class.

Example:

import { Pool } from 'tarn'

const dialect = new MssqlDialect({
  // ...
  tarn: {
    // ...
    Pool,
  },
})