| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× 1× 1× 1× 1× 232× 1× 1× | define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PdfBrush = (function () {
function PdfBrush() {
}
PdfBrush.prototype.clone = function () {
return this;
};
return PdfBrush;
}());
exports.PdfBrush = PdfBrush;
});
|