UNPKG

svelty-material

Version:

Svelte Materialify fork with ts support and updated scss.

22 lines (21 loc) 638 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; size?: number | undefined; tile?: boolean | undefined; style?: string | null | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: { default: {}; }; }; export declare type AvatarProps = typeof __propDef.props; export declare type AvatarEvents = typeof __propDef.events; export declare type AvatarSlots = typeof __propDef.slots; export default class Avatar extends SvelteComponentTyped<AvatarProps, AvatarEvents, AvatarSlots> { } export {};