Options
All
  • Public
  • Public/Protected
  • All
Menu

Hierarchy

  • Options

Index

Properties

disableDotRule?: true
htmlAcceptHeaders?: readonly string[]
index?: string
logger?: { (...data: any[]): void; (message?: any, ...optionalParams: any[]): void }

Type declaration

    • (...data: any[]): void
    • (message?: any, ...optionalParams: any[]): void
    • Parameters

      • Rest ...data: any[]

      Returns void

    • Prints to stdout with newline. Multiple arguments can be passed, with the first used as the primary message and all additional used as substitution values similar to printf(3) (the arguments are all passed to util.format()).

      const count = 5;
      console.log('count: %d', count);
      // Prints: count: 5, to stdout
      console.log('count:', count);
      // Prints: count: 5, to stdout

      See util.format() for more information.

      since

      v0.1.100

      Parameters

      • Optional message: any
      • Rest ...optionalParams: any[]

      Returns void

rewrites?: readonly Rewrite[]
verbose?: boolean