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