fadeIn.d.ts 232 B

1234567
  1. import { AnimationComponent as AC } from '../runtime';
  2. import { Animation } from './types';
  3. export type FadeInOptions = Animation;
  4. /**
  5. * Transform mark from transparent to solid.
  6. */
  7. export declare const FadeIn: AC<FadeInOptions>;