Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | declare module 'react-confetti' {
import { ComponentType } from 'react';
export interface ConfettiProps {
width?: number;
height?: number;
numberOfPieces?: number;
recycle?: boolean;
run?: boolean;
colors?: string[];
gravity?: number;
wind?: number;
tweenDuration?: number;
drawShape?: (ctx: CanvasRenderingContext2D) => void;
}
const Confetti: ComponentType<ConfettiProps>;
export default Confetti;
} |