@sorens/artist-svelte
Version:
an opinionated and clean UI framework for SvelteKit with theme support built-in
21 lines (20 loc) • 656 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { useAction } from '../../types/global';
declare const __propDef: {
props: {
useAction?: useAction<HTMLElement>;
class?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type AvatarStackProps = typeof __propDef.props;
export declare type AvatarStackEvents = typeof __propDef.events;
export declare type AvatarStackSlots = typeof __propDef.slots;
export default class AvatarStack extends SvelteComponentTyped<AvatarStackProps, AvatarStackEvents, AvatarStackSlots> {
}
export {};