import type { ISpriteData, IKeyFramesConstructorOption } from "@nrelaxed-ui/keyframes"; export interface IMarkKeyframes { width: number; height: number; source: HTMLImageElement[] | ISpriteData[]; } export interface IMarkConstructorOption { img: string | IMarkKeyframes; anchor?: THREE.Vector2; sprite?: boolean; keyframesOption?: IKeyFramesConstructorOption; }