UNPKG

@tsparticles/shape-cards

Version:
14 lines (13 loc) 317 B
import type { ICoordinates } from "@tsparticles/engine"; export interface IPathSegment { values: ICoordinates[]; } export interface IPath { segments: IPathSegment[]; } export interface ICardsPath { readonly club: IPath; readonly diamond: IPath; readonly heart: IPath; readonly spade: IPath; }