UNPKG

@tradingaction/annotations

Version:
15 lines (14 loc) 435 B
import * as React from "react"; export interface AnnotateProps { readonly className?: string; readonly with: React.ElementType; readonly when: (value: any, index: number, array: any[]) => boolean; readonly usingProps?: any; } export declare class Annotate extends React.Component<AnnotateProps> { static defaultProps: { className: string; }; render(): JSX.Element; private readonly renderSVG; }