File size: 604 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
/// <reference types=".pnpm/[email protected]/node_modules/svelte" />
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
radius?: number | undefined;
class?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type DotPatternProps = typeof __propDef.props;
export type DotPatternEvents = typeof __propDef.events;
export type DotPatternSlots = typeof __propDef.slots;
export default class DotPattern extends SvelteComponentTyped<DotPatternProps, DotPatternEvents, DotPatternSlots> {
}
export {};
|