UNPKG

550 BTypeScriptView Raw
1import { IDocNodeParameters, DocNode, DocSection } from '@microsoft/tsdoc';
2/**
3 * Constructor parameters for {@link DocTableCell}.
4 */
5export interface IDocTableCellParameters extends IDocNodeParameters {
6}
7/**
8 * Represents table cell, similar to an HTML `<td>` element.
9 */
10export declare class DocTableCell extends DocNode {
11 readonly content: DocSection;
12 constructor(parameters: IDocTableCellParameters, sectionChildNodes?: ReadonlyArray<DocNode>);
13 /** @override */
14 get kind(): string;
15}
16//# sourceMappingURL=DocTableCell.d.ts.map
\No newline at end of file