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