GoScrobble/web/node_modules/eslint-webpack-plugin/declarations/worker.d.ts

13 lines
294 B
TypeScript

export type setupOptions = {
/**
* - import path of eslint
*/
eslintPath?: string | undefined;
/**
* - linter options
*/
eslintOptions?: ESLintOptions | undefined;
};
export type ESLint = import('eslint').ESLint;
export type ESLintOptions = import('eslint').ESLint.Options;