mirror of
https://github.com/google/blockly.git
synced 2026-01-07 00:50:27 +01:00
docs: make three methods not internal (#6666)
Amusingly Flyout.isVisible and .setVisible are public, but there's no way to access a flyout given that getFlyout was not public.
This commit is contained in:
@@ -959,7 +959,6 @@ export class WorkspaceSvg extends Workspace implements IASTNodeLocationSvg {
|
||||
*
|
||||
* @param opt_own Whether to only return the workspace's own flyout.
|
||||
* @returns The flyout on this workspace.
|
||||
* @internal
|
||||
*/
|
||||
getFlyout(opt_own?: boolean): IFlyout|null {
|
||||
if (this.flyout || opt_own) {
|
||||
@@ -975,7 +974,6 @@ export class WorkspaceSvg extends Workspace implements IASTNodeLocationSvg {
|
||||
* Getter for the toolbox associated with this workspace, if one exists.
|
||||
*
|
||||
* @returns The toolbox on this workspace.
|
||||
* @internal
|
||||
*/
|
||||
getToolbox(): IToolbox|null {
|
||||
return this.toolbox_;
|
||||
|
||||
Reference in New Issue
Block a user