Preparing search index...
    interface AssetSearchTableCellProps {
        column: ISearchColumn;
        entityName: string;
        getAssetTypeDisplayName: (name: string) => string;
        getIsPhysical: (name: string) => boolean;
        linkDescriptor: {
            hash?: string;
            key?: string;
            pathname?: string;
            search?: string;
            state?: unknown;
        };
        namespaceId: keyof INamespace;
        record: SearchHit;
        routerStore?: RouterStoreType;
        rowIndex: number;
    }
    Index

    Properties

    entityName: string
    getAssetTypeDisplayName: (name: string) => string
    getIsPhysical: (name: string) => boolean
    linkDescriptor: {
        hash?: string;
        key?: string;
        pathname?: string;
        search?: string;
        state?: unknown;
    }
    namespaceId: keyof INamespace
    record: SearchHit
    routerStore?: RouterStoreType
    rowIndex: number