UNPKG

@mescius/dspdfviewer

Version:
16 lines (15 loc) 434 B
import { AnnotationBase } from "../Annotations/AnnotationTypes"; import { LayoutMode } from "../Annotations/types"; export type AcroFormsMsg = { type: 'reset'; }; export type AcroFormModel = { layoutMode: LayoutMode; expandedPageIndex: number; expandedAnnotationIds: any; selectedAnnotationId: string; data: { pageIndex: number; annotations: AnnotationBase[]; }[] | null; };