Add msTransform property in types/dom.d.ts

This commit is contained in:
Frederic Junod
2018-09-28 08:40:48 +02:00
parent 3d9b1af105
commit fa7a92b565
+4
View File
@@ -27,3 +27,7 @@ interface Element {
msRequestFullscreen(): Promise<void>;
webkitRequestFullscreen(allowKeyboardInput?: number): Promise<void>;
}
interface CSSStyleDeclaration {
msTransform: string | null;
}