UNPKG

@fluster.io/dev

Version:

13 lines (12 loc) 374 B
import { ReactNode } from 'react'; import { EqRefProps } from './types'; interface EquationRendereedEventProps { id: string; } declare global { interface WindowEventMap { "equation-rendered": CustomEvent<EquationRendereedEventProps>; } } export declare const EqRefAnchor: ({ children, id, }: Pick<EqRefProps, "children" | "id">) => ReactNode; export {};