UNPKG

@microsoft/api-documenter

Version:

Read JSON files from api-extractor, generate documentation pages

18 lines 688 B
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. import { DocNode, DocSection } from '@microsoft/tsdoc'; import { CustomDocNodeKind } from './CustomDocNodeKind'; /** * Represents table cell, similar to an HTML `<td>` element. */ export class DocTableCell extends DocNode { constructor(parameters, sectionChildNodes) { super(parameters); this.content = new DocSection({ configuration: this.configuration }, sectionChildNodes); } /** @override */ get kind() { return CustomDocNodeKind.TableCell; } } //# sourceMappingURL=DocTableCell.js.map