Shun Miyazawa 1 rok temu
rodzic
commit
bfba698bee
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      apps/app/src/interfaces/ai.ts

+ 2 - 2
apps/app/src/interfaces/ai.ts

@@ -1,5 +1,5 @@
-const AiServiceType = {
+export const aiServiceType = {
   OPEN_AI: 'openai',
 } as const;
 
-export const aiServiceTypes = Object.values(AiServiceType);
+export const aiServiceTypes = Object.values(aiServiceType);