From f307fc47608510a45db64bb66502f58c1c3db6f5 Mon Sep 17 00:00:00 2001 From: Erik Sundell Date: Fri, 9 Nov 2018 14:30:28 +0100 Subject: [PATCH] stackdriver: typescriptifying props --- .../datasource/stackdriver/components/SimpleSelect.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/app/plugins/datasource/stackdriver/components/SimpleSelect.tsx b/public/app/plugins/datasource/stackdriver/components/SimpleSelect.tsx index e6f53e6c1fc..976fc52b34d 100644 --- a/public/app/plugins/datasource/stackdriver/components/SimpleSelect.tsx +++ b/public/app/plugins/datasource/stackdriver/components/SimpleSelect.tsx @@ -1,8 +1,8 @@ import React, { SFC } from 'react'; interface Props { - onValueChange: any; - options: any; + onValueChange: (e) => void; + options: any[]; value: string; label: string; }