UNPKG

@jay.kou/rak-ssr

Version:

A react based UI components for admin system

11 lines (10 loc) 394 B
/// <reference types="react" /> type BaseInnerType = { data: Record<string, any>; setData: (values: Record<string, any>) => void; }; export type SchemaFormInnerRefType = BaseInnerType; export type BaseInnerRef = React.MutableRefObject<SchemaFormInnerRefType | undefined>; /** 产生一个 innerRef 的基本对象 */ export declare function CreateBaseInner(): BaseInnerType; export {};