UNPKG

@xmipra/plugins

Version:
14 lines (13 loc) 419 B
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 {};