@mescius/dspdfviewer
Version:
Document Solutions PDF Viewer
16 lines (15 loc) • 434 B
TypeScript
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;
};