11 lines
334 B
Plaintext
11 lines
334 B
Plaintext
import type { TSESLint } from '@typescript-eslint/utils';
|
|
export type Options = [
|
|
{
|
|
checkNever: boolean;
|
|
}
|
|
];
|
|
declare const _default: TSESLint.RuleModule<"meaninglessVoidOperator" | "removeVoid", Options, import("../../rules").ESLintPluginDocs, TSESLint.RuleListener> & {
|
|
name: string;
|
|
};
|
|
export default _default;
|