mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-30 09:03:15 +00:00
feat: add prompt management functionality with modal integration
This commit is contained in:
@@ -21,6 +21,12 @@ export type GetDocsResponse = {
|
||||
nextCursor: string;
|
||||
};
|
||||
|
||||
export type Prompt = {
|
||||
name: string;
|
||||
id: string;
|
||||
type: string;
|
||||
};
|
||||
|
||||
export type PromptProps = {
|
||||
prompts: { name: string; id: string; type: string }[];
|
||||
selectedPrompt: { name: string; id: string; type: string };
|
||||
|
||||
Reference in New Issue
Block a user