Backstage
    Preparing search index...

    Interface UseTableResult<T, TFilter>

    interface UseTableResult<T extends TableItem, TFilter = unknown> {
        filter: FilterState<TFilter>;
        reload: () => void;
        search: SearchState;
        tableProps: Omit<
            TableProps<T>,
            "columnConfig" | "rowConfig" | "selection" | "emptyState",
        >;
    }

    Type Parameters

    Index

    Properties

    reload: () => void
    search: SearchState
    tableProps: Omit<
        TableProps<T>,
        "columnConfig" | "rowConfig" | "selection" | "emptyState",
    >