zy-react-library/components/HiddenInfo/gwj/index.d.ts

27 lines
612 B
TypeScript
Raw Normal View History

2025-11-07 10:21:02 +08:00
import type { FC } from "react";
/**
*
*/
export interface HiddenInfoProps {
/** id默认取 query.id */
id?: string;
/** id 的字段,默认 id */
idKey?: string;
/** hiddenId默认取 query.hiddenId */
hiddenId?: string;
/** hiddenId 的字段,默认 hiddenId */
hiddenIdKey?: string;
/** 是否显示头部的返回,默认 true */
isShowHeaderBack?: boolean;
2025-11-07 15:58:38 +08:00
/** 获取数据 */
onGetData?: (data: Record<string, any>) => void;
2025-11-07 10:21:02 +08:00
}
/**
*
*/
declare const HiddenInfo: FC<HiddenInfoProps>;
export default HiddenInfo;