@xmipra/plugins
Version:
Xmipra developing plugins.
14 lines (13 loc) • 419 B
TypeScript
import { WatchFile, type WatchFileOptions } from './shared/watch-file';
interface WatchConfigOptions extends WatchFileOptions {
change: (path: string) => void;
close?: () => void;
}
export declare class WatchConfig extends WatchFile {
options: WatchConfigOptions;
constructor(options: WatchConfigOptions);
name: string;
close(): void;
update(event: string, path: string): void;
}
export {};