let-it-go
Version:
❄️ Let your website snow instantly
15 lines (13 loc) • 376 B
text/typescript
export type Range = [number, number];
export type Style = Partial<CSSStyleDeclaration>;
export interface Options {
root?: HTMLElement;
number?: number;
velocityXRange?: Range;
velocityYRange?: Range;
radiusRange?: Range;
color?: CanvasFillStrokeStyles['fillStyle'];
alphaRange?: Range;
backgroundColor?: CanvasFillStrokeStyles['fillStyle'];
style?: Style
}