소스 검색

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