mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add JSPrintManager v2.0.2 * tslint * tstslint * tslint * tslint * tslint * tslint * add tests * add test * add test * add tests * delete blank lines
12 lines
236 B
TypeScript
12 lines
236 B
TypeScript
import { JSPM } from 'jsprintmanager';
|
|
|
|
JSPM.JSPrintManager.start()
|
|
.then(_ => {
|
|
JSPM.JSPrintManager.getPrinters().then(e => {
|
|
console.log(e);
|
|
});
|
|
})
|
|
.catch(e => {
|
|
console.log(e);
|
|
});
|