@re-shell/cli
Version:
Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja
23 lines (22 loc) • 617 B
TypeScript
import { ProgressSpinner } from '../utils/spinner';
export interface FileWatcherCommandOptions {
start?: boolean;
stop?: boolean;
status?: boolean;
stats?: boolean;
rules?: boolean;
addRule?: boolean;
removeRule?: string;
interactive?: boolean;
workspaceFile?: string;
usePolling?: boolean;
interval?: number;
ignored?: string[];
depth?: number;
persistent?: boolean;
json?: boolean;
verbose?: boolean;
follow?: boolean;
spinner?: ProgressSpinner;
}
export declare function manageFileWatcher(options?: FileWatcherCommandOptions): Promise<void>;