9 lines
483 B
Plaintext
9 lines
483 B
Plaintext
import { TSESLint } from '@typescript-eslint/utils';
|
|
import type { Selector } from './naming-convention-utils';
|
|
export type MessageIds = 'doesNotMatchFormat' | 'doesNotMatchFormatTrimmed' | 'missingAffix' | 'missingUnderscore' | 'satisfyCustom' | 'unexpectedUnderscore';
|
|
export type Options = Selector[];
|
|
declare const _default: TSESLint.RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener> & {
|
|
name: string;
|
|
};
|
|
export default _default;
|