@mescius/dsimageviewer
Version:
Document Solutions Image Viewer
17 lines (16 loc) • 363 B
TypeScript
export interface IGcPoint {
x: number;
y: number;
}
export interface IGcSize {
w: number;
h: number;
}
export interface IGcRect extends IGcPoint, IGcSize {
}
export declare class GcSelectionPoint implements IGcPoint {
constructor(x: number, y: number, pageIndex: number);
x: number;
y: number;
pageIndex: number;
}