8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
import type { RuleOptions } from './rule-options'
|
|
|
|
declare module 'eslint-define-config' {
|
|
export interface CustomRuleOptions extends RuleOptions {}
|
|
}
|
|
|
|
export {}
|