@tsparticles/shape-cards
Version:
tsParticles cards shape
14 lines (13 loc) • 317 B
TypeScript
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;
}