Completely updated React, fixed #11, (hopefully)
This commit is contained in:
25
goTorrentWebUI/node_modules/material-ui/ExpansionPanel/ExpansionPanelSummary.d.ts
generated
vendored
Normal file
25
goTorrentWebUI/node_modules/material-ui/ExpansionPanel/ExpansionPanelSummary.d.ts
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { ButtonBaseProps, ButtonBaseClassKey } from '../ButtonBase';
|
||||
|
||||
export interface ExpansionPanelSummaryProps
|
||||
extends StandardProps<ButtonBaseProps, ExpansionPanelSummaryClassKey> {
|
||||
disabled?: boolean;
|
||||
expanded?: boolean;
|
||||
expandIcon?: React.ReactNode;
|
||||
onChange?: React.ReactEventHandler<{}>;
|
||||
}
|
||||
|
||||
export type ExpansionPanelSummaryClassKey =
|
||||
| ButtonBaseClassKey
|
||||
| 'expanded'
|
||||
| 'focused'
|
||||
| 'disabled'
|
||||
| 'content'
|
||||
| 'contentExpanded'
|
||||
| 'expandIcon'
|
||||
| 'expandIconExpanded';
|
||||
|
||||
declare const ExpansionPanelSummary: React.ComponentType<ExpansionPanelSummaryProps>;
|
||||
|
||||
export default ExpansionPanelSummary;
|
Reference in New Issue
Block a user