UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

25 lines 594 B
export class DescribeAs extends BaseMatcher { /** * * @param {string} template * @param {Matcher} matcher * @param {Array} values */ constructor(template: string, matcher: Matcher, values: any[]); /** * @type {string} */ template: string; /** * @type {Matcher} */ matcher: Matcher; /** * @type {Array} */ values: any[]; matches(item: any, mismatch_description: any): any; describeTo(description: any): void; } import { BaseMatcher } from "../BaseMatcher.js"; //# sourceMappingURL=DescribeAs.d.ts.map