UNPKG

eslint-plugin-ng-module-sort

Version:

Sort Angular and NestJS module imports, declarations, exports, controls, etc.

9 lines 404 B
import { RuleContext } from '@typescript-eslint/utils/ts-eslint'; export interface RuleSettings { reverseSort: boolean; extraDecorators: Array<string>; extraProperties: Array<string>; } export type RuleOptions = Partial<RuleSettings>; export type DecoratorArrayItemsRuleContext = RuleContext<'wrongOrderOfDecoratorArrayItems', Array<Partial<RuleOptions>>>; //# sourceMappingURL=types.d.ts.map