Skip to content

textmode.export.js / ExportOverlayController

Interface: ExportOverlayController

Controller for managing the export overlay UI visibility at runtime.

Methods

show()

ts
show(): void;

Shows the export overlay UI.

Returns

void

Example

ts
t.exportOverlay.show();

hide()

ts
hide(): void;

Hides the export overlay UI.

Returns

void

Example

ts
t.exportOverlay.hide();

toggle()

ts
toggle(): void;

Toggles the export overlay UI visibility.

Returns

void

Example

ts
t.exportOverlay.toggle();

isVisible()

ts
isVisible(): boolean;

Checks if the export overlay is currently visible.

Returns

boolean

Example

ts
const visible = t.exportOverlay.isVisible();