svelte-ux
Version:
A large collection of Svelte components, actions, stores and utils to simplify creating highly interactive and visual applications. Built using Tailwind with extensibility and customization in mind.
29 lines (28 loc) • 835 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
lightColor?: string | undefined;
lightRadius?: number | undefined;
depth?: number | undefined;
surfaceScale?: number | undefined;
specularConstant?: number | undefined;
specularExponent?: number | undefined;
classes?: {
root?: string;
svg?: string;
} | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type ShineProps = typeof __propDef.props;
export type ShineEvents = typeof __propDef.events;
export type ShineSlots = typeof __propDef.slots;
export default class Shine extends SvelteComponentTyped<ShineProps, ShineEvents, ShineSlots> {
}
export {};