let-it-go
Version:
❄️ Let your website snow instantly
14 lines (13 loc) • 394 B
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;
}