UNPKG

@atlaskit/editor-common

Version:

A package that contains common classes and components for editor and renderer

8 lines (7 loc) 280 B
/// <reference types="react" /> /** * Converts a CSS properties object to a CSS string. * @param properties - CSS properties object. * @returns CSS string. */ export declare function convertToInlineCss(properties: React.CSSProperties | Record<`--${string}`, string>): string;