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

27 lines
612 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;
/** 获取数据 */
onGetData?: (data: Record<string, any>) => void;
}
/**
* 隐患查看组件(港务局版本)
*/
declare const HiddenInfo: FC<HiddenInfoProps>;
export default HiddenInfo;