@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
15 lines • 467 B
TypeScript
export default ComponentAddAction;
declare class ComponentAddAction extends Action<any> {
constructor(entity: any, component: any);
entity: any;
component: any;
/**
*
* @type {EntityComponentDataset}
*/
dataset: EntityComponentDataset;
apply(editor: any): Promise<void>;
revert(editor: any): Promise<void>;
}
import { Action } from "../../../src/core/process/undo/Action.js";
//# sourceMappingURL=ComponentAddAction.d.ts.map