فهرست منبع

stackdriver: typescriptifying props

Erik Sundell 7 سال پیش
والد
کامیت
f307fc4760
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      public/app/plugins/datasource/stackdriver/components/SimpleSelect.tsx

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