UNPKG

@antdp/antdp-ui

Version:

基于antd封装的组件

15 lines (14 loc) 395 B
import React from 'react'; import { GetStoreProps, NamePath } from './interface'; export interface HideState { } export interface HideProps { hideContent: GetStoreProps; name: NamePath; initialValue?: boolean; children?: React.ReactNode; } declare const _default: (props: Omit<HideProps, "hideContent"> & { [x: string]: any; }) => React.JSX.Element; export default _default;