From d6eafb8ea06f5c52ea48e19a30ffd517fc4bb858 Mon Sep 17 00:00:00 2001 From: afholderman Date: Thu, 4 Jan 2018 16:30:43 -0600 Subject: [PATCH] Add option functions to props (#22681) --- types/reactstrap/lib/Collapse.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/reactstrap/lib/Collapse.d.ts b/types/reactstrap/lib/Collapse.d.ts index d2c6bc0c70..9fa6ebd4ad 100644 --- a/types/reactstrap/lib/Collapse.d.ts +++ b/types/reactstrap/lib/Collapse.d.ts @@ -12,6 +12,11 @@ export interface CollapseProps extends React.HTMLProps { }; onOpened?: () => void; onClosed?: () => void; + onEntering?: () => void; + onEntered?: () => void; + onExit?: () => void; + onExiting?: () => void; + onExited?: () => void; } declare const Collapse: React.StatelessComponent;