11 lines
256 B
TypeScript
11 lines
256 B
TypeScript
type ExpandablePanelOptionalProps = {
|
|
expandInitially?: boolean;
|
|
loading?: boolean;
|
|
panelProps?: InnerPanelProps;
|
|
showHeaderSpinner?: boolean;
|
|
};
|
|
|
|
type ExpandablePanelProps = ExpandablePanelOptionalProps & {
|
|
header: import('react').ReactNode;
|
|
};
|