import { Tree } from '@nx/devkit'; /** * `wrangler types` output. It is the `typegen` target's declared Nx output (see * plugin.ts), so it is a build artifact — regenerated on demand via `nx typegen`, * never committed. */ export declare const WORKER_CONFIGURATION_DTS = "worker-configuration.d.ts"; /** * Append an entry to the project's `.gitignore` if absent (matching whole lines * so a substring never masks a real entry). Creates the file when absent. */ export declare function ensureGitignored(tree: Tree, projectRoot: string, entry: string): void;