@tradingaction/annotations
Version:
Annotations for react-financial-charts
15 lines (14 loc) • 441 B
TypeScript
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(): React.JSX.Element;
private readonly renderSVG;
}