2015-12-04 03:52:51 +08:00
|
|
|
import Printer from './printer';
|
|
|
|
|
|
|
|
let printer = null;
|
|
|
|
export function activate() {
|
|
|
|
printer = new Printer();
|
|
|
|
}
|
|
|
|
|
|
|
|
export function deactivate() {
|
|
|
|
if (printer) printer.deactivate();
|
|
|
|
}
|
|
|
|
|
2017-09-27 02:33:08 +08:00
|
|
|
export function serialize() {}
|