fadeOut.d.ts 235 B

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