import { Object3D } from 'three'; import { Command } from '../command.js'; import { Editor } from '../editor.js'; /** * @param editor Editor * @param object THREE.Object3D * @param script javascript object * @param attributeName string * @param newValue string, object * @constructor */ declare class SetScriptValueCommand extends Command { object: Object3D; script: T; attributeName: K; oldValue: any; newValue: any; constructor(editor: Editor, object: Object3D, script: T, attributeName: K, newValue: any); execute(): void; undo(): void; update(cmd: SetScriptValueCommand): void; } export { SetScriptValueCommand };