You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Verify that the following proposed API for the DebugConsole works as documented:
/** * Represents the debug console. */exportinterfaceDebugConsole{/** * Append the given value to the debug console. * * @param value A string, falsy values will not be printed. */append(value: string): void;/** * Append the given value and a line feed character * to the debug console. * * @param value A string, falsy values will be printed. */appendLine(value: string): void;}exportnamespacedebug{/** * The [debug console](#DebugConsole) singleton. */exportletconsole: DebugConsole;}
The text was updated successfully, but these errors were encountered:
Test for #36753:
Complexity: 2
Verify that the following proposed API for the DebugConsole works as documented:
The text was updated successfully, but these errors were encountered: