From fa7a92b565ca3d748376893ca7fe65afced4ae0d Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Fri, 28 Sep 2018 08:40:48 +0200 Subject: [PATCH] Add msTransform property in types/dom.d.ts --- types/dom.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/types/dom.d.ts b/types/dom.d.ts index ab406a05b8..8ae4e45c60 100644 --- a/types/dom.d.ts +++ b/types/dom.d.ts @@ -27,3 +27,7 @@ interface Element { msRequestFullscreen(): Promise; webkitRequestFullscreen(allowKeyboardInput?: number): Promise; } + +interface CSSStyleDeclaration { + msTransform: string | null; +}