@microsoft/api-extractor
Version:
Validate, document, and review the exported API for a TypeScript library
16 lines • 641 B
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
Object.defineProperty(exports, "__esModule", { value: true });
/**
* This class is used by AstSymbolTable to return an entry point.
* (If AstDeclaration could be used to represent a ts.SyntaxKind.SourceFile node,
* then this class would not be needed.)
*/
class AstEntryPoint {
constructor(parameters) {
this.exportedMembers = parameters.exportedMembers;
}
}
exports.AstEntryPoint = AstEntryPoint;
//# sourceMappingURL=AstEntryPoint.js.map