import { Type } from '@ephox/katamari'; // some elements, such as mathml, don't have style attributes // others, such as angular elements, have style attributes that aren't a CSSStyleDeclaration const isSupported = (dom: T): dom is (T & ElementCSSInlineStyle) => (dom as any).style !== undefined && Type.isFunction((dom as any).style.getPropertyValue); export { isSupported };