From 40b469fb8ff1656a25aa73fed6cc5baba952d911 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Tue, 17 Sep 2024 22:39:28 +0530 Subject: [PATCH] chore: ts types --- src/api/interpretation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/interpretation.ts b/src/api/interpretation.ts index c498e652..7d835cec 100644 --- a/src/api/interpretation.ts +++ b/src/api/interpretation.ts @@ -1,5 +1,6 @@ import { default as axios } from "axios"; +// todo: proper typescript types for params export const handleUploadCredentials = async (credentials: any) => { try { await axios.post('http://localhost:8080/integration/upload-credentials', { credentials: JSON.parse(credentials) });