1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- "use strict";
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
- define([], function () {
- var PrintAPI = function () {
- function PrintAPI() {
- _classCallCheck(this, PrintAPI);
- }
-
- PrintAPI.prototype.print = function print() {};
-
- PrintAPI.prototype.registerContent = function registerContent() {};
- return PrintAPI;
- }();
- return PrintAPI;
- });
|