File size: 401 Bytes
fd8cdf5
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import type { DashboardManifest } from '../types/manifest.js';
import type { FileMapping } from './input-resolver.js';
export interface WatcherOptions {
    inputPath: string;
    onManifestUpdate: (manifest: DashboardManifest, fileMapping: FileMapping) => void;
}
export interface WatcherInstance {
    close(): void;
}
export declare function startWatcher(options: WatcherOptions): WatcherInstance;