We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f757270 + 1e6412e commit e6a6b4cCopy full SHA for e6a6b4c
1 file changed
app/src/lib/electron.ts
@@ -147,10 +147,15 @@ export interface SpecRegenerationAPI {
147
projectPath: string,
148
projectDefinition: string
149
) => Promise<{ success: boolean; error?: string }>;
150
+ generateFeatures: (projectPath: string) => Promise<{
151
+ success: boolean;
152
+ error?: string;
153
+ }>;
154
stop: () => Promise<{ success: boolean; error?: string }>;
155
status: () => Promise<{
156
success: boolean;
157
isRunning?: boolean;
158
+ currentPhase?: string;
159
error?: string;
160
}>;
161
onEvent: (callback: (event: SpecRegenerationEvent) => void) => () => void;
0 commit comments