12 lines
247 B
TypeScript
12 lines
247 B
TypeScript
import * as eslint from 'eslint';
|
|
|
|
/**
|
|
* Get ESLint class
|
|
*/
|
|
declare function getESLint(): typeof eslint.ESLint;
|
|
/**
|
|
* Get LegacyESLint class
|
|
*/
|
|
declare function getLegacyESLint(): typeof eslint.ESLint;
|
|
|
|
export { getESLint, getLegacyESLint };
|