all files / graphics/brushes/ pdf-brush.js

100% Statements 8/8
100% Branches 0/0
100% Functions 4/4
100% Lines 8/8
1 2 3 4 5 6 7 8 9 10 11 12 13 14     232×        
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;
});