mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-12 20:44:30 +08:00
15 lines
217 B
Text
15 lines
217 B
Text
|
import Printer from './printer';
|
||
|
|
||
|
let printer = null;
|
||
|
export function activate() {
|
||
|
printer = new Printer();
|
||
|
}
|
||
|
|
||
|
export function deactivate() {
|
||
|
if (printer) printer.deactivate();
|
||
|
}
|
||
|
|
||
|
export function serialize() {
|
||
|
|
||
|
}
|