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