Skip to content

Commit d113351

Browse files
committed
TypeScript
1 parent 7c9b1ba commit d113351

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from './SelectableGroup';

0 commit comments

Comments
 (0)