UNPKG

sigrist-svelte-mandelbrot-explorer

Version:

A svelte component that renders the mandelbrot set using WebGL. Try this [Demo](https://sigrist.dev/apps/mandelbrot).

23 lines (22 loc) 721 B
import { SvelteComponentTyped } from "svelte"; import type { vec2 } from "../types/vectors"; declare const __propDef: { props: { width: number; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: { center: vec2; magnificationMultiplier: number; }; }; }; export declare type InteractionHandlerProps = typeof __propDef.props; export declare type InteractionHandlerEvents = typeof __propDef.events; export declare type InteractionHandlerSlots = typeof __propDef.slots; export default class InteractionHandler extends SvelteComponentTyped<InteractionHandlerProps, InteractionHandlerEvents, InteractionHandlerSlots> { } export {};