UNPKG

@microsoft/api-documenter

Version:

Read JSON files from api-extractor, generate documentation pages

22 lines 854 B
"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.DocTableCell = void 0; const tsdoc_1 = require("@microsoft/tsdoc"); const CustomDocNodeKind_1 = require("./CustomDocNodeKind"); /** * Represents table cell, similar to an HTML `<td>` element. */ class DocTableCell extends tsdoc_1.DocNode { constructor(parameters, sectionChildNodes) { super(parameters); this.content = new tsdoc_1.DocSection({ configuration: this.configuration }, sectionChildNodes); } /** @override */ get kind() { return CustomDocNodeKind_1.CustomDocNodeKind.TableCell; } } exports.DocTableCell = DocTableCell; //# sourceMappingURL=DocTableCell.js.map