UNPKG

283 BTypeScriptView Raw
1import type { IParticles } from "../../Options/Interfaces/Particles/IParticles";
2import type { RecursivePartial } from "../../Types";
3export interface IShapeValues {
4 close?: boolean;
5 fill?: boolean;
6 particles?: RecursivePartial<IParticles>;
7 [key: string]: unknown;
8}