js-slang
Version:
Javascript-based implementations of Source, written in Typescript
10 lines (9 loc) • 298 B
TypeScript
import type { Identifier } from 'estree';
import { RuleError } from '../../errors';
import type { Rule } from '../../types';
export declare class NoEval extends RuleError<Identifier> {
explain(): string;
elaborate(): string;
}
declare const noEval: Rule<Identifier>;
export default noEval;