import EngineCommand from "./EngineCommand"; /** * The command that tells the engine to enable or disable debug mode. */ export default class DebugCommand extends EngineCommand { /** The value indicating whether debug mode is on or not. */ readonly on: boolean; constructor( /** The value indicating whether debug mode is on or not. */ on: boolean); serialize(): string; }