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:
Neil Fraser
2022-12-01 17:46:21 +01:00
committed by GitHub
parent c959ce85ae
commit 1cccc3cb4a
2 changed files with 0 additions and 3 deletions

View File

@@ -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_;