/** * Various flags to control the runtime environment * @category Runtime */ export declare class Flags { /** * Enables additional logging and diagnostics */ static diagnostics: boolean; /** * Trace who and what generates packets */ static trace: boolean; /** * Enables/disabled WebUSB */ static webUSB: boolean; /** * Enables/disabled WebSerial */ static webSerial: boolean; /** * Enables/disables WebBLE */ static webBluetooth: boolean; /** * Enables developer mode when connecting devices */ static developerMode: boolean; }