(listeners: PlaceholderImplementationListeners)
| 12 | const keyboard = (navigator as any).keyboard; |
| 13 | |
| 14 | export function setup(listeners: PlaceholderImplementationListeners) { |
| 15 | if (keyboard) { |
| 16 | keyboard.getLayoutMap = makePlaceholderImplementation( |
| 17 | "getLayoutMap", |
| 18 | listeners |
| 19 | ); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | export function onCallerCreated( |
| 24 | getTopLevelLayoutMap: ExposedFunctions.Async["getLayoutMap"] |
nothing calls this directly
no test coverage detected