dgeni-packages
Version:
A collection of dgeni packages for generating documentation from source code
15 lines • 566 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ExportDoc = void 0;
const ApiDoc_1 = require("./ApiDoc");
/**
* An export document is an abstraction somewhere between a TypeScript symbol and a declaration
* depending upon the underlying type.
*
* Exported functions can be overloaded and so have one doc per declaration
* Exported interfaces can have multiple declarations, they would be merged together
*/
class ExportDoc extends ApiDoc_1.BaseApiDoc {
}
exports.ExportDoc = ExportDoc;
//# sourceMappingURL=ExportDoc.js.map