mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 12:40:08 +08:00
11 lines
324 B
JavaScript
11 lines
324 B
JavaScript
|
/** @babel */
|
||
|
import {ExtensionRegistry} from 'nylas-exports';
|
||
|
import EmojisComposerExtension from './emojis-composer-extension'
|
||
|
|
||
|
export function activate() {
|
||
|
ExtensionRegistry.Composer.register(EmojisComposerExtension);
|
||
|
}
|
||
|
|
||
|
export function deactivate() {
|
||
|
ExtensionRegistry.Composer.unregister(EmojisComposerExtension);
|
||
|
}
|