tsparticles
Version:
Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.
19 lines (18 loc) • 914 B
TypeScript
import { IPlugin } from "../../Core/Interfaces/IPlugin";
import { PolygonMaskInstance } from "./PolygonMaskInstance";
import { Container } from "../../Core/Container";
import { RecursivePartial } from "../../Types";
import { IOptions } from "../../Options/Interfaces/IOptions";
import { IPolygonMaskOptions } from "./Options/Interfaces/IPolygonMaskOptions";
import { Options } from "../../Options/Classes/Options";
declare class PolygonMaskPlugin implements IPlugin {
readonly id: string;
constructor();
getPlugin(container: Container): PolygonMaskInstance;
needsPlugin(options?: RecursivePartial<IOptions & IPolygonMaskOptions>): boolean;
loadOptions(options: Options, source?: RecursivePartial<IOptions & IPolygonMaskOptions>): void;
}
declare const plugin: PolygonMaskPlugin;
export { IPolygonMaskOptions };
export { plugin as PolygonMaskPlugin };
export * from "./Enums";