DocsTableProps
Home > @backstage/plugin-techdocs > DocsTableProps
Props for DocsTable.
Signature:
export type DocsTableProps = {
    entities: Entity[] | undefined;
    title?: string | undefined;
    loading?: boolean | undefined;
    columns?: TableColumn<DocsTableRow>[];
    actions?: TableProps<DocsTableRow>['actions'];
    options?: TableOptions<DocsTableRow>;
};
References: Entity, TableColumn, DocsTableRow, TableProps, TableOptions