UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

35 lines 660 B
export class AssetDescription { /** * * @param {string} path * @param {string} type * @constructor */ constructor(path: string, type: string); /** * @type {string} */ path: string; /** * @type {string} */ type: string; /** * * @param {AssetDescription} other * @returns {boolean} */ equals(other: AssetDescription): boolean; /** * * @returns {number} */ hash(): number; toString(): string; /** * @readonly * @type {boolean} */ readonly isAssetDescription: boolean; } //# sourceMappingURL=AssetDescription.d.ts.map