UNPKG

agnostic-svelte

Version:
32 lines (31 loc) 942 B
/** @typedef {typeof __propDef.props} EmptyStateExampleProps */ /** @typedef {typeof __propDef.events} EmptyStateExampleEvents */ /** @typedef {typeof __propDef.slots} EmptyStateExampleSlots */ export default class EmptyStateExample extends SvelteComponentTyped<{ isRounded?: boolean; isBordered?: boolean; title?: string; subtitle?: string; btnCopy?: string; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type EmptyStateExampleProps = typeof __propDef.props; export type EmptyStateExampleEvents = typeof __propDef.events; export type EmptyStateExampleSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { isRounded?: boolean; isBordered?: boolean; title?: string; subtitle?: string; btnCopy?: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export {};