We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c9b1ba commit d113351Copy full SHA for d113351
packages/material-ui-lab/src/SelectableGroup/SelectableGroup.d.ts
@@ -0,0 +1,11 @@
1
+import * as React from 'react';
2
+
3
+export interface SelectableGroupProps {
4
+ exclusive?: boolean;
5
+ onChange?: (event: React.ChangeEvent<{}>, selected: any) => void;
6
+ value?: Array<string | number | boolean | object> | string | number | boolean | object;
7
+}
8
9
+declare const SelectableGroup: React.ComponentType<SelectableGroupProps>;
10
11
+export default SelectableGroup;
packages/material-ui-lab/src/SelectableGroup/index.d.ts
@@ -0,0 +1 @@
+export { default } from './SelectableGroup';
0 commit comments