UNPKG

@wufengteam/inputs

Version:

平台提供的右侧属性编辑器,需要在主工程中注册

15 lines (14 loc) 367 B
import type { FC } from 'react'; import type { Component } from '@wufengteam/core/dist/esm/types'; interface IProps { name: string; label: string; context?: { pageData: (Component & { id: string; })[]; }; dependencies?: string[]; } declare const DependenciesDemoInput: FC<IProps>; export default DependenciesDemoInput;