evalution
    Preparing search index...

    Type Alias FileWatchCallback

    FileWatchCallback: (eventType: ChangeEventType, filePath: string) => void

    Callback invoked by FileProvider.watch when a watched file changes.

    Type Declaration

      • (eventType: ChangeEventType, filePath: string): void
      • Parameters

        • eventType: ChangeEventType

          The kind of change: 'add', 'change', or 'remove'.

        • filePath: string

          The affected file path, relative to the watcher's cwd.

        Returns void