@tachybase/plugin-block-step-form
Version:
Provides Step form card.
30 lines (29 loc) • 686 B
TypeScript
export declare const getSchemaStepItem: ({ title, ...others }: {
[x: string]: any;
title: any;
}) => {
type: string;
name: string;
'x-component': string;
'x-component-props': {
uid: string;
title: any;
};
properties: {
step: {
type: string;
'x-component': string;
'x-component-props': {
uid: string;
};
properties: {
grid: {
type: string;
'x-component': string;
'x-initializer': string;
properties: {};
};
};
};
};
};