/** * @typedef PrefixIdsParams * @property {boolean | string | ((node: import('../lib/types.js').XastElement, info: import('../lib/types.js').PluginInfo) => string)=} prefix * @property {string=} delim * @property {boolean=} prefixIds * @property {boolean=} prefixClassNames */ export const name: "prefixIds"; export const description: "prefix IDs"; /** * Prefixes identifiers * * @author strarsis * @type {import('../lib/types.js').Plugin} */ export const fn: import("../lib/types.js").Plugin; export type PrefixIdsParams = { prefix?: (boolean | string | ((node: import("../lib/types.js").XastElement, info: import("../lib/types.js").PluginInfo) => string)) | undefined; delim?: string | undefined; prefixIds?: boolean | undefined; prefixClassNames?: boolean | undefined; };