Skip to Content

Last Updated: 3/9/2026


kysely

  • Tarn

Interface Tarn

interface Tarn {
    options: Omit<TarnPoolOptions, “create” | “destroy” | “validate”> & {
        validateConnections?: KyselyTypeError<
            “deprecated: use MssqlDialectConfig.validateConnections instead”,
        >;
    };
    Pool: typeof TarnPool;
}

Index

Properties

options Pool

Properties

options

options: Omit<TarnPoolOptions, “create” | “destroy” | “validate”> & {
    validateConnections?: KyselyTypeError<
        “deprecated: use MssqlDialectConfig.validateConnections instead”,
    >;
}

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

Type Declaration

  • OptionalvalidateConnections?: KyselyTypeError<     “deprecated: use MssqlDialectConfig.validateConnections instead”, >

    Deprecated

    use MssqlDialectConfig.validateConnections instead.

Pool

Pool: typeof TarnPool

Tarn.js’ Pool class.

Settings

Member Visibility

On This Page

Properties

optionsPool