UNPKG

@atlaskit/editor-plugin-annotation

Version:

Annotation plugin for @atlaskit/editor-core

12 lines (11 loc) 329 B
import React from 'react'; type AnnotationViewWrapperProps = { annotationText?: string; children: React.ReactNode; onViewed?: () => void; }; export declare class AnnotationViewWrapper extends React.PureComponent<AnnotationViewWrapperProps> { componentDidMount(): void; render(): React.ReactNode; } export {};