mat-ripple
Version:
Material design Ripple effect.
16 lines (15 loc) • 599 B
TypeScript
/**
* Default ripple animation configuration for ripples without an explicit
* animation config specified.
*/
export declare const defaultRippleAnimationConfig: {
enterDuration: number;
exitDuration: number;
};
/**
* Timeout for ignoring mouse events. Mouse events will be temporary ignored after touch
* events to avoid synthetic mouse events.
*/
export declare const ignoreMouseEventsTimeout = 800;
/** Options that apply to all the event listeners that are bound by the ripple renderer. */
export declare const passiveEventOptions: boolean | AddEventListenerOptions;