@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
23 lines • 537 B
TypeScript
export class AnimationNotificationDefinition {
/**
* Event name to be dispatched during the notification
* @type {string}
*/
event: string;
/**
* Data to be sent with the event
* @type {*}
*/
data: any;
/**
*
* @param {AnimationNotificationDefinition} other
* @returns {boolean}
*/
equals(other: AnimationNotificationDefinition): boolean;
/**
* @returns {number}
*/
hash(): number;
}
//# sourceMappingURL=AnimationNotificationDefinition.d.ts.map