@glance-networks/agent-plugin
Version:
Glance Networks Agent Plugin
26 lines (25 loc) • 730 B
TypeScript
/** @typedef {typeof __propDef.props} AlertErrorProps */
/** @typedef {typeof __propDef.events} AlertErrorEvents */
/** @typedef {typeof __propDef.slots} AlertErrorSlots */
export default class AlertError extends SvelteComponent<{
[x: string]: any;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type AlertErrorProps = typeof __propDef.props;
export type AlertErrorEvents = typeof __propDef.events;
export type AlertErrorSlots = 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 {};