import EngineCommand from "./EngineCommand"; /** * The command that tells the engine to change an option with the given name and value. */ export default class SetOptionCommand extends EngineCommand { /** The name of the option to set. */ readonly name: string; /** The value of the option to set. */ readonly value: string; constructor( /** The name of the option to set. */ name: string, /** The value of the option to set. */ value: string); serialize(): string; }