UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

25 lines 582 B
/** * @class */ export class Notification { /** * * @param {string} title * @param {string} description * @param {string} image URL to image * @param {string[]} classList * @constructor */ constructor({ title, description, image, classList }: string); title: any; description: any; image: ObservedValue; classList: any; /** * @readonly * @type {boolean} */ readonly isNotification: boolean; } import ObservedValue from '../../core/model/ObservedValue.js'; //# sourceMappingURL=Notification.d.ts.map