Interface ParcelFileSystemWatcherServerOptions

interface ParcelFileSystemWatcherServerOptions {
    error: ((message, ...args) => void);
    info: ((message, ...args) => void);
    parcelOptions: Options;
    verbose: boolean;
}

Properties

error: ((message, ...args) => void)

Type declaration

    • (message, ...args): void
    • Parameters

      • message: string
      • Rest ...args: any[]

      Returns void

info: ((message, ...args) => void)

Type declaration

    • (message, ...args): void
    • Parameters

      • message: string
      • Rest ...args: any[]

      Returns void

parcelOptions: Options
verbose: boolean