UNPKG

react-admin-kit

Version:

A react based UI components for admin system

15 lines (14 loc) 883 B
/// <reference types="react" /> import { ApiType, BusinessSelectBuilderProps, BusinessSelectProps, BusinessSelectSelfProps } from './types'; /** * select数据挂在window上作为缓存, 避免重复请求 */ export declare const SelectName = "@@selectData"; export declare const SelectStatusName = "@@selectDataIsStart"; export declare const SelectTotalName = "@@selectDataTotal"; export declare const SelectCurrentName = "@@selectDataCurrent"; declare function BusinessSelectBuilder<Type extends string>({ apis, defaultProps, }: BusinessSelectBuilderProps): (props: BusinessSelectProps<Type>) => import("react/jsx-runtime").JSX.Element | null; export default BusinessSelectBuilder; export declare const clearSelectCache: (type?: string) => void; export declare const BizApi: React.FC<ApiType>; export declare const BusinessSelectSelf: React.FC<BusinessSelectSelfProps<string>>;