Skip to content

Commit

Permalink
TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
joshwooding committed Feb 23, 2019
1 parent 7c9b1ba commit d113351
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/material-ui-lab/src/SelectableGroup/SelectableGroup.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import * as React from 'react';

export interface SelectableGroupProps {
exclusive?: boolean;
onChange?: (event: React.ChangeEvent<{}>, selected: any) => void;
value?: Array<string | number | boolean | object> | string | number | boolean | object;
}

declare const SelectableGroup: React.ComponentType<SelectableGroupProps>;

export default SelectableGroup;
1 change: 1 addition & 0 deletions packages/material-ui-lab/src/SelectableGroup/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default } from './SelectableGroup';

0 comments on commit d113351

Please sign in to comment.