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; }