Remotely/Server/wwwroot/scripts/Models/CursorInfo.ts
Jared Goodwin a0405e28a0 WIP
2019-06-15 18:08:30 -07:00

7 lines
135 B
TypeScript

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