feat(react): port bookmark switch

This commit is contained in:
Elian Doran
2025-08-22 11:24:27 +03:00
parent da4810672d
commit f9b6fd6ac5
6 changed files with 53 additions and 73 deletions

View File

@@ -155,3 +155,10 @@ export interface OpenAiOrAnthropicModelResponse {
type: string;
}>;
}
export type ToggleInParentResponse = {
success: true;
} | {
success: false;
message: string;
}