@llds/bg-dots
Version:
A lightweight background dot animation using PixiJS and Simplex Noise.
13 lines (9 loc) • 289 B
TypeScript
//#region src/index.d.ts
/**
* useBackgroundDots
* @param container the container to add the dots to
* @param isDark whether the background is dark or not
*/
declare function useBackgroundDots(container: HTMLElement, isDark: boolean): void;
//#endregion
export { useBackgroundDots };