writeOutputFile.d.ts 293 B

123456
  1. /**
  2. * Create a file with eslint output data
  3. * @param {string} outputFile The name file that needs to be created
  4. * @param {string} outputData The data that needs to be inserted into the file
  5. */
  6. export declare function writeOutputFile(outputFile: string, outputData: string): Promise<void>;