@typescript-eslint/eslint-plugin
Version:
TypeScript plugin for ESLint
14 lines • 634 B
TypeScript
import type { TSESLint } from '@typescript-eslint/utils';
type Prefer = 'no-type-imports' | 'type-imports';
type FixStyle = 'inline-type-imports' | 'separate-type-imports';
export type Options = [
{
disallowTypeAnnotations?: boolean;
fixStyle?: FixStyle;
prefer?: Prefer;
}
];
export type MessageIds = 'avoidImportType' | 'noImportTypeAnnotations' | 'someImportsAreOnlyTypes' | 'typeOverValue';
declare const _default: TSESLint.RuleModule<MessageIds, Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener>;
export default _default;
//# sourceMappingURL=consistent-type-imports.d.ts.map