UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

16 lines 404 B
/** * @template T */ export class IsNot<T> extends BaseMatcher { /** * * @param {Matcher<T>} matcher */ constructor(matcher: Matcher<T>); matches(item: any, mismatch_description: any): boolean; describeTo(description: any): void; #private; } import { BaseMatcher } from "../BaseMatcher.js"; import { Matcher } from "../Matcher.js"; //# sourceMappingURL=IsNot.d.ts.map