@astro-tei/react
Version:
Astro integration for TEI as Custom Elements with React support
12 lines • 510 B
TypeScript
import React from "react";
import type { PropsWithChildren } from "react";
interface BehaviorProps {
node: Node;
className?: string;
keepOriginal?: boolean;
rewriteIds?: boolean;
}
export declare const forwardAttributes: (atts: NamedNodeMap) => Record<string, string>;
export default function Behavior({ children, node, className, keepOriginal, rewriteIds }: PropsWithChildren<BehaviorProps>): React.DOMElement<Record<string, string>, Element>;
export {};
//# sourceMappingURL=Behavior.d.ts.map