21 lines
315 B
Plaintext
21 lines
315 B
Plaintext
/**
|
|
* @fileoverview typings for "eslint/config" module
|
|
* @author Nicholas C. Zakas
|
|
*/
|
|
|
|
import {
|
|
type Config,
|
|
type ConfigObject,
|
|
defineConfig,
|
|
globalIgnores,
|
|
includeIgnoreFile,
|
|
} from "@eslint/config-helpers";
|
|
|
|
export {
|
|
type Config,
|
|
type ConfigObject,
|
|
defineConfig,
|
|
globalIgnores,
|
|
includeIgnoreFile,
|
|
};
|