/** * scanDrizzlePush — ported from `scripts/guard-no-drizzle-push.mjs`. * * Refuse to let `drizzle-kit push` (or `drizzle push`) get wired into any * build/deploy path (`netlify.toml`, or a `package.json` build/deploy * script). Generic guard — no monorepo-specific path assumption in the * original, ported as-is. * * Standalone `db:push` / `db:push:*` npm scripts are intentionally NOT * flagged — those are explicit, human-invoked commands, not build hooks. */ import type { GuardResult, GuardScanOptions } from "./types.js"; export declare function scanDrizzlePush(options: GuardScanOptions): GuardResult; //# sourceMappingURL=no-drizzle-push.d.ts.map