Skip to content

Commit 96c011a

Browse files
committed
docs: add JSDocs
1 parent 45f992d commit 96c011a

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/pages/inbox/report/ReportActionCompose/ExpandCollapseButton.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,17 @@ import useThemeStyles from '@hooks/useThemeStyles';
1111
import CONST from '@src/CONST';
1212

1313
type ExpandCollapseButtonProps = ViewProps & {
14+
/** Whether the full composer is available */
1415
isFullComposerAvailable: boolean;
16+
/** Whether the composer is full size */
1517
isComposerFullSize: boolean;
18+
/** The report ID */
1619
reportID: string;
20+
/** Function to raise the scroll is likely layout triggered */
1721
raiseIsScrollLikelyLayoutTriggered: () => void;
22+
/** Function to set the composer full size */
1823
setIsComposerFullSize: (reportID: string, isFullSize: boolean) => void;
24+
/** Whether the button is disabled */
1925
disabled?: boolean;
2026
};
2127

0 commit comments

Comments
 (0)