@yuntijs/ui
Version:
☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps
8 lines (7 loc) • 360 B
TypeScript
import { type FormItemProps } from 'antd';
import React from 'react';
import { FormCollapseListOperation } from './hooks';
export interface FormCollapseListFieldsWatcherProps extends Pick<FormCollapseListOperation, 'update'> {
name: FormItemProps['name'];
}
export declare const FormCollapseListFieldsWatcher: React.FC<FormCollapseListFieldsWatcherProps>;