worker.d.ts 294 B

123456789101112
  1. export type setupOptions = {
  2. /**
  3. * - import path of eslint
  4. */
  5. eslintPath?: string | undefined;
  6. /**
  7. * - linter options
  8. */
  9. eslintOptions?: ESLintOptions | undefined;
  10. };
  11. export type ESLint = import('eslint').ESLint;
  12. export type ESLintOptions = import('eslint').ESLint.Options;