UNPKG

187 BTypeScriptView Raw
1import type { IMouseData } from "./IMouseData";
2export interface IContainerInteractivity {
3 element?: HTMLElement | Window | Node | null;
4 status?: string;
5 mouse: IMouseData;
6}