7 lines
132 B
TypeScript
7 lines
132 B
TypeScript
|
export type aiWizardClosedBeforeCompletionEvent = {
|
||
|
type: 'AI_WIZARD_CLOSED_BEFORE_COMPLETION';
|
||
|
payload: {
|
||
|
step: string;
|
||
|
};
|
||
|
};
|