mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 20:44:30 +08:00
11 lines
328 B
Text
11 lines
328 B
Text
|
import {ExtensionRegistry} from 'nylas-exports';
|
||
|
import SpellcheckComposerExtension from './spellcheck-composer-extension';
|
||
|
|
||
|
export function activate() {
|
||
|
ExtensionRegistry.Composer.register(SpellcheckComposerExtension);
|
||
|
}
|
||
|
|
||
|
export function deactivate() {
|
||
|
ExtensionRegistry.Composer.unregister(SpellcheckComposerExtension);
|
||
|
}
|