UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines 346 B
/** * @template T */ export class IsIn<T> extends BaseMatcher { /** * @param {T[]} collection */ constructor(collection: T[]); matches(item: any, mismatch_description: any): boolean; describeTo(description: any): void; #private; } import { BaseMatcher } from "../BaseMatcher.js"; //# sourceMappingURL=IsIn.d.ts.map