@mescius/dsimageviewer
Version:
Document Solutions Image Viewer
21 lines (20 loc) • 529 B
TypeScript
import { PluginModel } from "@dt/core-viewer";
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";
};