UNPKG

@glance-networks/agent-plugin

Version:

Glance Networks Agent Plugin

26 lines (25 loc) 744 B
/** @typedef {typeof __propDef.props} AlertSuccessProps */ /** @typedef {typeof __propDef.events} AlertSuccessEvents */ /** @typedef {typeof __propDef.slots} AlertSuccessSlots */ export default class AlertSuccess extends SvelteComponent<{ [x: string]: any; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type AlertSuccessProps = typeof __propDef.props; export type AlertSuccessEvents = typeof __propDef.events; export type AlertSuccessSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; exports?: undefined; bindings?: undefined; }; export {};