UNPKG

@glance-networks/agent-plugin

Version:

Glance Networks Agent Plugin

26 lines (25 loc) 723 B
/** @typedef {typeof __propDef.props} AlertInfoProps */ /** @typedef {typeof __propDef.events} AlertInfoEvents */ /** @typedef {typeof __propDef.slots} AlertInfoSlots */ export default class AlertInfo extends SvelteComponent<{ [x: string]: any; }, { [evt: string]: CustomEvent<any>; }, {}> { } export type AlertInfoProps = typeof __propDef.props; export type AlertInfoEvents = typeof __propDef.events; export type AlertInfoSlots = 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 {};