9 lines
347 B
JavaScript
9 lines
347 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CommentChar = void 0;
|
|
/** @internal */
|
|
var CommentChar;
|
|
(function (CommentChar) {
|
|
CommentChar[CommentChar["Line"] = 0] = "Line";
|
|
CommentChar[CommentChar["Star"] = 1] = "Star";
|
|
})(CommentChar = exports.CommentChar || (exports.CommentChar = {}));
|