vitepress-jsdoc
Version:
A bridge between Vitepress and JSDoc-style commented codebases for hassle-free documentation.
12 lines • 377 B
JavaScript
/**
* Represents the types of statistics for parsed files.
* @enum {string}
*/
export var StatisticType;
(function (StatisticType) {
StatisticType["EMPTY"] = "EMPTY";
StatisticType["ERROR"] = "ERROR";
StatisticType["EXCLUDE"] = "EXCLUDE";
StatisticType["INCLUDE"] = "INCLUDE";
})(StatisticType || (StatisticType = {}));
//# sourceMappingURL=interfaces.js.map