Remotely/Remotely_Server/wwwroot/scripts/Models/CursorInfo.ts
2021-07-29 07:53:46 -07:00

7 lines
135 B
TypeScript

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