Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Tarn

interface Tarn {
options: Omit<TarnPoolOptions<any>, "create" | "destroy" | "validate">;
Pool: TarnPool;
}

§Properties

§
options: Omit<TarnPoolOptions<any>, "create" | "destroy" | "validate">
[src]

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

§
Pool: TarnPool
[src]

Tarn.js' Pool class.

Example:

import { Pool } from 'tarn'

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