(id: string)
| 8 | * Get a registered adapter by id (for use by the Office app component). |
| 9 | */ |
| 10 | export function getAdapter(id: string): DocumentAdapter | undefined { |
| 11 | return adapterRegistry.get(id); |
| 12 | } |
| 13 | |
| 14 | /** |
| 15 | * Register an adapter instance that can be used by the Web Component. |