kysely
    Preparing search index...

    Interface Tarn

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

    Properties

    Properties

    options: Omit<TarnPoolOptions<any>, "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

    Pool: typeof TarnPool

    Tarn.js' Pool class.