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