@devfamily/admiral
Version:
Admiral is a frontend framework for creating back office using React. It provides out-of-the-box components and tools that make developing an admin interface easy and fast.
11 lines (10 loc) • 329 B
TypeScript
import React from 'react';
declare type DataTableValueType = {
refresh: () => void;
};
export declare const DataTableContext: React.Context<DataTableValueType>;
export declare const DataTableContextProvider: React.FC<{
value: DataTableValueType;
}>;
export declare function useDataTable(): DataTableValueType;
export {};