rspress-plugin-devkit
Version:
Rspress plugin develop kit.
8 lines (7 loc) • 519 B
TypeScript
import type { MdxJsxAttribute, MdxJsxExpressionAttribute } from 'mdast-util-mdx-jsx';
import type { Dictionary } from 'util-ts-types';
export declare class MdxAttrNodeFactory {
static createMdxJsxAttributeNodes(attributes: Dictionary<any>): (MdxJsxExpressionAttribute | MdxJsxAttribute)[];
static createMdxJsxLiteralAttributeNode(name: string, value: string | number | boolean): MdxJsxAttribute;
static createMdxJsxExpressionAttributeNode(name: string, value: Dictionary<any>): MdxJsxExpressionAttribute;
}