Remotely/Remotely_Server/wwwroot/scripts/Models/CursorInfo.ts
2019-03-20 23:28:39 -07:00

7 lines
135 B
TypeScript

import { Point } from "./Point";
export interface CursorInfo {
ImageBytes: Uint8Array;
HotSpot: Point;
CssOverride: string;
}