8 lines
338 B
TypeScript
8 lines
338 B
TypeScript
import type { TSESLint } from '@typescript-eslint/utils';
|
|
export interface Options {
|
|
exceptions?: string[];
|
|
}
|
|
export type MessageId = 'notAllowed';
|
|
declare const _default: TSESLint.RuleModule<"notAllowed", [(Options | undefined)?], import("../utils/create-rule.ts").ImportXPluginDocs, TSESLint.RuleListener>;
|
|
export default _default;
|