Type Alias: MemoAction
@torque-labs/torque-utils • Docs
@torque-labs/torque-utils / MemoAction
Type Alias: MemoAction
type MemoAction: {
fields: ({
description: null | string;
image: null | string;
label: null | string;
name: string;
} & {
type: "string";
validation: {
match: null | string;
required: null | boolean;
};
} | {
description: null | string;
image: null | string;
label: null | string;
name: string;
} & {
type: "number";
validation: {
max: null | number;
min: null | number;
};
} | {
description: null | string;
image: null | string;
label: null | string;
name: string;
} & {
type: "boolean";
validation: {
match: null | boolean;
};
})[];
};Memo action config type
Type declaration
Name
Type
Description
fields
({ description: null | string; image: null | string; label: null | string; name: string; } & { type: "string"; validation: { match: null | string; required: null | boolean; }; } | { description: null | string; image: null | string; label: null | string; name: string; } & { type: "number"; validation: { max: null | number; min: null | number; }; } | { description: null | string; image: null | string; label: null | string; name: string; } & { type: "boolean"; validation: { match: null | boolean; }; })[]
The fields to collect from the user
Defined in
Last updated