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