15 lines
480 B
Plaintext
15 lines
480 B
Plaintext
import type { TSESLint } from '@typescript-eslint/utils';
|
|
export type Options = [
|
|
{
|
|
caseSensitive?: boolean;
|
|
checkIntersections?: boolean;
|
|
checkUnions?: boolean;
|
|
groupOrder?: string[];
|
|
}
|
|
];
|
|
export type MessageIds = 'notSorted' | 'notSortedNamed' | 'suggestFix';
|
|
declare const _default: TSESLint.RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener> & {
|
|
name: string;
|
|
};
|
|
export default _default;
|