UNPKG

571 BTypeScriptView Raw
1declare namespace BrowserSupportCore {
2 /**
3 * True if browser supports css animations.
4 */
5 function hasCSSAnimations(): boolean;
6
7 /**
8 * True if browser supports css transforms.
9 */
10 function hasCSSTransforms(): boolean;
11
12 /**
13 * True if browser supports css 3d transforms.
14 */
15 function hasCSS3DTransforms(): boolean;
16
17 /**
18 * True if browser supports css transitions.
19 */
20 function hasCSSTransitions(): boolean;
21}
22// eslint-disable-next-line @definitelytyped/export-just-namespace
23export = BrowserSupportCore;