ngx-extended-pdf-viewer
Version:
Embedding PDF files in your Angular application. Highly configurable viewer including the toolbar, sidebar, and all the features you're used to.
9 lines (8 loc) • 414 B
TypeScript
export interface AnnotationEditorEvent {
source: any;
type: 'altTextChanged' | 'removed' | 'sizeChanged' | 'commit' | 'fontSizeChanged' | 'colorChanged' | 'thicknessChanged' | 'opacityChanged' | 'bezierPathChanged' | 'moved' | 'imageAdded' | 'added' | 'commented' | 'commentRemoved' | 'drawingStarted' | 'drawingStopped';
editorType: string;
value: any;
previousValue?: any;
id?: string;
}