From 74b98a2f6e2c4e0899f2bde7d6f0fde39e6ea8ea Mon Sep 17 00:00:00 2001 From: Shams mosowi Date: Tue, 6 Jul 2021 17:14:25 +1000 Subject: [PATCH] twilio spark typing --- www/src/components/Table/editors/CodeEditor.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/src/components/Table/editors/CodeEditor.tsx b/www/src/components/Table/editors/CodeEditor.tsx index 0a38b664..18142bea 100644 --- a/www/src/components/Table/editors/CodeEditor.tsx +++ b/www/src/components/Table/editors/CodeEditor.tsx @@ -282,9 +282,9 @@ export default function CodeEditor(props: any) { }> type TwilioMessageBody = (SparkContext) => Promise<{ - body: any; - from: any; - to: any; + body: string; + from: string; + to: string; }> type TaskBody = (SparkContext) => Promise