Interface SafeMdxAttribute

interface SafeMdxAttribute {
    name?: string;
    type: "mdxJsxAttribute" | "mdxJsxExpressionAttribute";
    value?: null | string | { type: string; value?: string };
}

Properties

Properties

name?: string
type: "mdxJsxAttribute" | "mdxJsxExpressionAttribute"
value?: null | string | { type: string; value?: string }