()
| 279 | |
| 280 | /** @private */ |
| 281 | export function init() { |
| 282 | // See. https://developer.mozilla.org/en-US/docs/Web/API/Window/customElements#Specification#Browser_compatibility |
| 283 | if (!window.customElements) { |
| 284 | return; |
| 285 | } |
| 286 | window.customElements.define('openpgp-encrypted-form', OpenPGPEncryptedForm); |
| 287 | window.customElements.define('openpgp-email-read', OpenPGPEmailRead); |
| 288 | window.customElements.define('openpgp-email-write', OpenPGPEmailWrite); |
| 289 | } |
nothing calls this directly
no outgoing calls
no test coverage detected