@mescius/dsimageviewer
Version:
Document Solutions Image Viewer
22 lines (21 loc) • 549 B
TypeScript
//@ts-ignore
import { PluginModel } from "@grapecity/viewer-core";
import { DrillthroughAction, InteractivityAction } from "../GcImageDocument";
export declare type ReportEvent = PluginModel.ViewerEvent | {
type: "ItemClicked";
iStorePos: number;
a: InteractivityAction;
};
export declare type ReportAction = InteractivityAction | DrillthroughAction | {
Type: "print";
} | {
Type: "save";
} | {
Type: "rotate";
} | {
Type: "text-selection";
} | {
Type: "pan";
} | {
Type: "doc-properties";
};