1 2 3 4 5 6 7 8 9 | 1× 1× 1× 15× 1× | import { MatchError } from "./_namespace"; export class LessThanMatchError extends MatchError { public constructor(actualValue: number, upperLimit: number, shouldMatch: boolean) { super(actualValue, upperLimit, `Expected ${actualValue} ${!shouldMatch ? "not ": ""}to be less than ${upperLimit}.`); } } |