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