UNPKG

api-extractor-model-me

Version:

A helper library for loading and saving the .api.json files created by API Extractor

72 lines 2.63 kB
"use strict"; // 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 }); exports.ApiProperty = void 0; const DeclarationReference_1 = require("@microsoft/tsdoc/lib-commonjs/beta/DeclarationReference"); const ApiStaticMixin_1 = require("../mixins/ApiStaticMixin"); const ApiPropertyItem_1 = require("../items/ApiPropertyItem"); /** * Represents a TypeScript property declaration that belongs to an `ApiClass`. * * @remarks * * This is part of the {@link ApiModel} hierarchy of classes, which are serializable representations of * API declarations. * * `ApiProperty` represents a TypeScript declaration such as the `width` and `height` members in this example: * * ```ts * export class Widget { * public width: number = 100; * * public get height(): number { * if (this.isSquashed()) { * return 0; * } else { * return this.clientArea.height; * } * } * } * ``` * * Note that member variables are also considered to be properties. * * If the property has both a getter function and setter function, they will be represented by a single `ApiProperty` * and must have a single documentation comment. * * Compare with {@link ApiPropertySignature}, which represents a property belonging to an interface. * For example, a class property can be `static` but an interface property cannot. * * @public */ class ApiProperty extends ApiStaticMixin_1.ApiStaticMixin(ApiPropertyItem_1.ApiPropertyItem) { constructor(options) { super(options); } static getContainerKey(name, isStatic) { if (isStatic) { return `${name}|${"Property" /* Property */}|static`; } else { return `${name}|${"Property" /* Property */}|instance`; } } /** @override */ get kind() { return "Property" /* Property */; } /** @override */ get containerKey() { return ApiProperty.getContainerKey(this.name, this.isStatic); } /** @beta @override */ buildCanonicalReference() { const nameComponent = DeclarationReference_1.DeclarationReference.parseComponent(this.name); return (this.parent ? this.parent.canonicalReference : DeclarationReference_1.DeclarationReference.empty()) .addNavigationStep(this.isStatic ? "." /* Exports */ : "#" /* Members */, nameComponent) .withMeaning("member" /* Member */); } } exports.ApiProperty = ApiProperty; //# sourceMappingURL=ApiProperty.js.map