@tachybase/plugin-workflow-approval
Version:
Approval base in Workflow
42 lines (41 loc) • 958 B
TypeScript
export declare const collectionWorkflows: {
title: string;
name: string;
fields: ({
type: string;
name: string;
interface: string;
uiSchema: {
title: string;
type: string;
'x-component': string;
required: boolean;
enum?: undefined;
};
} | {
type: string;
name: string;
interface: string;
uiSchema: {
title: string;
type: string;
'x-component': string;
required?: undefined;
enum?: undefined;
};
} | {
type: string;
name: string;
interface: string;
uiSchema: {
type: string;
title: string;
'x-component': string;
enum: {
label: string;
value: boolean;
}[];
required?: undefined;
};
})[];
};