File size: 249 Bytes
fea495a | 1 2 3 4 5 6 7 8 9 | /**
* Create a file with eslint output data
*/
export declare function writeOutputFile(
/** The name file that needs to be created */
outputFile: string,
/** The data that needs to be inserted into the file */
outputData: string): Promise<void>;
|