@eslint-types/typescript-eslint
Version:
TypeScript definitions for eslint-define-config
21 lines (19 loc) • 422 B
TypeScript
export interface Schema0 {
allow?: Array<
| 'functions'
| 'arrowFunctions'
| 'generatorFunctions'
| 'methods'
| 'generatorMethods'
| 'getters'
| 'setters'
| 'constructors'
| 'private-constructors'
| 'protected-constructors'
| 'asyncFunctions'
| 'asyncMethods'
| 'decoratedFunctions'
| 'overrideMethods'
>;
}
export type NoEmptyFunctionRuleOptions = [Schema0?];