mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
15 lines
591 B
TypeScript
15 lines
591 B
TypeScript
import * as React from 'react';
|
|
import Transition from 'react-transition-group/Transition';
|
|
import { TransitionCallbacks, BsPrefixOnlyProps } from './helpers';
|
|
export interface OffcanvasTogglingProps extends TransitionCallbacks, BsPrefixOnlyProps {
|
|
className?: string;
|
|
in?: boolean;
|
|
mountOnEnter?: boolean;
|
|
unmountOnExit?: boolean;
|
|
appear?: boolean;
|
|
timeout?: number;
|
|
children: React.ReactElement;
|
|
}
|
|
declare const OffcanvasToggling: React.ForwardRefExoticComponent<OffcanvasTogglingProps & React.RefAttributes<Transition<any>>>;
|
|
export default OffcanvasToggling;
|