Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Fade.d.ts 366B

1234567891011121314151617
  1. import * as React from 'react';
  2. import { TransitionCallbacks } from './helpers';
  3. export interface FadeProps
  4. extends TransitionCallbacks,
  5. React.ClassAttributes<Fade> {
  6. in?: boolean;
  7. mountOnEnter?: boolean;
  8. unmountOnExit?: boolean;
  9. appear?: boolean;
  10. timeout?: number;
  11. }
  12. declare class Fade extends React.Component<FadeProps> {}
  13. export default Fade;