UNPKG

mssql-change-tracking

Version:
11 lines (10 loc) 395 B
import sql from "mssql"; import { ctDbStatus } from "./change-tracking-db-status"; declare type CtDbDisable = { pool: sql.ConnectionPool; dbName: string; }; /** Disable change tracking in DB level */ export declare function ctDbDisable({ dbName, pool, }: CtDbDisable): ReturnType<typeof ctDbStatus>; export declare function ctDbDisableQuery(dbName: string): string; export {};