chore: fixed tsdoc missing deprecation messages (#6460)

* chore: added missing deprecation messages for `core/renderers/common/block_rendering.ts`

* chore: added missing deprecation messages for `core/utils.ts`

* chore: updated format

* fix: reverted runAfterPageLoad to internal and updated messaging
This commit is contained in:
Blake Thomas Williams
2022-09-30 16:25:44 -05:00
committed by GitHub
parent fa925e8c35
commit e0b60cbf8a
3 changed files with 27 additions and 28 deletions

View File

@@ -54,7 +54,8 @@ import {Renderer} from './renderer.js';
*
* @returns Whether the debugger is turned on.
* @alias Blockly.blockRendering.isDebuggerEnabled
* @deprecated
* @deprecated Use the debug renderer in **\@blockly/dev-tools** (See {@link
* https://www.npmjs.com/package/@blockly/dev-tools}.)
* @internal
*/
export function isDebuggerEnabled(): boolean {
@@ -90,7 +91,8 @@ export function unregister(name: string) {
* Turn on the blocks debugger.
*
* @alias Blockly.blockRendering.startDebugger
* @deprecated
* @deprecated Use the debug renderer in **\@blockly/dev-tools** (See {@link
* https://www.npmjs.com/package/@blockly/dev-tools}.)
* @internal
*/
export function startDebugger() {
@@ -105,7 +107,8 @@ export function startDebugger() {
* Turn off the blocks debugger.
*
* @alias Blockly.blockRendering.stopDebugger
* @deprecated
* @deprecated Use the debug renderer in **\@blockly/dev-tools** (See {@link
* https://www.npmjs.com/package/@blockly/dev-tools}.)
* @internal
*/
export function stopDebugger() {