@skeletonlabs/skeleton
Version:
A SvelteKit component library.
24 lines (23 loc) • 686 B
TypeScript
/** @typedef {typeof __propDef.props} GreenFallProps */
/** @typedef {typeof __propDef.events} GreenFallEvents */
/** @typedef {typeof __propDef.slots} GreenFallSlots */
export default class GreenFall extends SvelteComponentTyped<{
[x: string]: never;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type GreenFallProps = typeof __propDef.props;
export type GreenFallEvents = typeof __propDef.events;
export type GreenFallSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: never;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};