cq back in sync

This commit is contained in:
2024-11-15 00:15:17 -05:00
parent 93a0b65484
commit 1340e807e1
3 changed files with 10 additions and 8 deletions

4
src/types.d.ts vendored
View File

@@ -1,5 +1,5 @@
// src/types.d.ts
interface WorkflowState {
export interface WorkflowState {
[key: string]: unknown;
validated?: boolean;
cleaned?: boolean;
@@ -12,7 +12,7 @@ interface WorkflowState {
step2?: boolean;
}
interface IntentResult {
export interface IntentResult {
confidence: number;
action: string;
}