mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-25 19:15:18 +02:00
add quick-ask action type definition
This commit is contained in:
parent
f931f08f00
commit
2a8f393cde
1 changed files with 10 additions and 0 deletions
10
surfsense_web/contracts/types/quick-ask-actions.types.ts
Normal file
10
surfsense_web/contracts/types/quick-ask-actions.types.ts
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
export type QuickAskActionMode = "transform" | "explore";
|
||||
|
||||
export interface QuickAskAction {
|
||||
id: string;
|
||||
name: string;
|
||||
prompt: string;
|
||||
mode: QuickAskActionMode;
|
||||
icon: string;
|
||||
group: "transform" | "explore" | "knowledge" | "custom";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue