interface NestedBoundWitnessesState {
    clickedExistingHash?: string;
    loading?: boolean;
    provided: boolean;
    setClickedExistingHash?: Dispatch<SetStateAction<undefined | string>>;
    setLoading?: Dispatch<SetStateAction<boolean>>;
}

Hierarchy (view full)

Properties

clickedExistingHash?: string
loading?: boolean
provided: boolean
setClickedExistingHash?: Dispatch<SetStateAction<undefined | string>>
setLoading?: Dispatch<SetStateAction<boolean>>