@refinedev/core
Version:
Refine is a React meta-framework for building enterprise-level, data-intensive applications rapidly with support for modern UI libraries and headless integrations.
14 lines • 437 B
text/typescript
import type { BaseKey } from "../../../contexts/data/types";
export type RefreshButtonProps = {
resource?: string;
id?: BaseKey;
dataProviderName?: string;
meta?: Record<string, unknown>;
};
export type RefreshButtonValues = {
onClick: () => void;
label: string;
loading: boolean;
};
export declare function useRefreshButton(props: RefreshButtonProps): RefreshButtonValues;
//# sourceMappingURL=index.d.ts.map