File size: 247 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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 };
|