UNPKG

ilojo-bar-components

Version:

Ilojo Bar Component Library

17 lines (16 loc) 483 B
import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { plateTitle: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export declare type PlateProps = typeof __propDef.props; export declare type PlateEvents = typeof __propDef.events; export declare type PlateSlots = typeof __propDef.slots; export default class Plate extends SvelteComponentTyped<PlateProps, PlateEvents, PlateSlots> { } export {};