/** * @typedef AddAttributesToSVGElementParams * @property {string | Record=} attribute * @property {Array>=} attributes */ export const name: "addAttributesToSVGElement"; export const description: "adds attributes to an outer element"; /** * Add attributes to an outer element. * * @author April Arcus * * @type {import('../lib/types.js').Plugin} */ export const fn: import("../lib/types.js").Plugin; export type AddAttributesToSVGElementParams = { attribute?: (string | Record) | undefined; attributes?: Array> | undefined; };