docs(web): adds link to API docs

This commit is contained in:
Joshua A. Horton 2023-04-19 09:01:27 +07:00
parent 588841593c
commit 17e010fd39

View file

@ -26,6 +26,8 @@ export class KeymanEngine extends KeymanEngineBase<ContextManager, KeyEventKeybo
* Description Return object with activation state of UI:
* activationPending (bool): KMW being activated
* activated (bool): KMW active
*
* See https://help.keyman.com/DEVELOPER/ENGINE/WEB/16.0/reference/core/getUIState
*/
getUIState(): FocusStateAPIObject {
return this.contextManager.focusAssistant.getUIState();
@ -34,6 +36,8 @@ export class KeymanEngine extends KeymanEngineBase<ContextManager, KeyEventKeybo
/**
* Set or clear the IsActivatingKeymanWebUI flag (exposed function)
*
* See https://help.keyman.com/DEVELOPER/ENGINE/WEB/16.0/reference/core/activatingUI
*
* @param {(boolean|number)} state Activate (true,false)
*/
activatingUI(state: boolean | number) {