@wufengteam/inputs
Version:
平台提供的右侧属性编辑器,需要在主工程中注册
15 lines (14 loc) • 376 B
TypeScript
import type { FunctionDefine } from '@wufengteam/core/dist/esm/types';
export declare function getCustomFn(): FunctionDefine[];
interface Group {
title: string;
key: string;
children: {
title: string;
key: string;
value: FunctionDefine;
}[];
selectable: boolean;
}
export declare function getGroupedFunctions(): Group[];
export {};