Remotely/Server/wwwroot/scripts/Models/CursorInfo.ts
Jared Goodwin 10ec413b7d WIP
2021-07-29 07:53:54 -07:00

7 lines
135 B
TypeScript

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