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.
11 lines
524 B
11 lines
524 B
import { MotionName } from '../CSSMotion';
|
|
export declare function getVendorPrefixes(domSupport: boolean, win: object): {
|
|
animationend: Record<string, string>;
|
|
transitionend: Record<string, string>;
|
|
};
|
|
export declare function getVendorPrefixedEventName(eventName: string): any;
|
|
export declare const animationEndName: any;
|
|
export declare const transitionEndName: any;
|
|
export declare const supportTransition: boolean;
|
|
export declare function getTransitionName(transitionName: MotionName, transitionType: string): any;
|