1 | import { type IDocNodeParameters, DocNode, DocSection } from '@microsoft/tsdoc';
|
2 | /**
|
3 | * Constructor parameters for {@link DocTableCell}.
|
4 | */
|
5 | export interface IDocTableCellParameters extends IDocNodeParameters {
|
6 | }
|
7 | /**
|
8 | * Represents table cell, similar to an HTML `<td>` element.
|
9 | */
|
10 | export 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 |