UNPKG

js-slang

Version:

Javascript-based implementations of Source, written in Typescript

10 lines (9 loc) 294 B
import type { Literal } from 'estree'; import { RuleError } from '../../errors'; import type { Rule } from '../../types'; export declare class NoNullError extends RuleError<Literal> { explain(): string; elaborate(): string; } declare const noNull: Rule<Literal>; export default noNull;