dgeni-packages
Version:
A collection of dgeni packages for generating documentation from source code
13 lines • 509 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.lineFeedPrinter = void 0;
const typescript_1 = require("typescript");
/**
* Platform consistent TypeScript printer instance. By default, TypeScript will use the
* new-line kind based on the operating system (e.g. Windows will use CRLF).
*/
exports.lineFeedPrinter = (0, typescript_1.createPrinter)({
newLine: typescript_1.NewLineKind.LineFeed,
removeComments: true,
});
//# sourceMappingURL=LineFeedPrinter.js.map