@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
25 lines • 509 B
TypeScript
export class TooltipComponent {
static fromJSON(json: any): TooltipComponent;
/**
*
* @type {string}
*/
key: string;
hash(): number;
/**
*
* @param {TooltipComponent} other
* @return {boolean}
*/
equals(other: TooltipComponent): boolean;
toJSON(): {
key: string;
};
fromJSON({ key }: {
key: any;
}): void;
}
export namespace TooltipComponent {
let typeName: string;
}
//# sourceMappingURL=TooltipComponent.d.ts.map