/** * @typedef ConvertStyleToAttrsParams * @property {boolean=} keepImportant */ export const name: "convertStyleToAttrs"; export const description: "converts style to attributes"; /** * Convert style in attributes. Cleanups comments and illegal declarations (without colon) as a side effect. * * @example * * ⬇ * * * @example * * ⬇ * * * @author Kir Belevich * * @type {import('../lib/types.js').Plugin} */ export const fn: import("../lib/types.js").Plugin; export type ConvertStyleToAttrsParams = { keepImportant?: boolean | undefined; };