interface IImageShape {
    close?: boolean;
    fill?: boolean;
    gif: boolean;
    height: number;
    name: string;
    particles?: RecursivePartial<IParticlesOptions>;
    replaceColor: boolean;
    src: string;
    width: number;
}

Hierarchy (view full)

Properties

close?: boolean
fill?: boolean
gif: boolean
height: number
name: string
replaceColor: boolean
src: string
width: number