react-antd-admin-panel
Version:
Modern TypeScript-first React admin panel builder with Ant Design 6
21 lines • 977 B
TypeScript
/**
* Hooks Module - React hooks for react-antd-admin-panel
*
* Provides modern React hooks alongside the builder pattern for:
* - HTTP requests (useGet, usePost)
* - List state management (useList)
* - Form handling (useForm)
* - Access control (useAccess)
*/
export { useGet } from './useGet';
export type { UseGetOptions, UseGetResult } from './useGet';
export { usePost } from './usePost';
export type { UsePostOptions, UsePostResult, UsePostMethod } from './usePost';
export { useList } from './useList';
export type { UseListOptions, UseListResult, UseListPagination, UseListGetConfig } from './useList';
export { useForm } from './useForm';
export type { UseFormOptions, UseFormResult, ValidateFunction } from './useForm';
export { useAccess } from './useAccess';
export type { UseAccessResult, AccessCheck, FeatureAccess } from './useAccess';
export { useMain, useUser, useStore, useStoreActions } from '../main/MainContext';
//# sourceMappingURL=index.d.ts.map