@glance-networks/agent-plugin
Version:
Glance Networks Agent Plugin
46 lines (45 loc) • 1.33 kB
TypeScript
import { SvelteComponent } from "svelte";
type IconSize = {
[key: string]: string;
};
export declare const getTailwindSpacing: () => IconSize;
export declare const ICON_SIZES: IconSize;
declare const __propDef: {
props: {
[x: string]: any;
size?: string | number | undefined;
role?: string | undefined;
withEvents?: boolean | undefined;
title?: {
id?: string;
title?: string;
} | undefined;
desc?: {
id?: string;
desc?: string;
} | undefined;
ariaLabel?: string | undefined;
};
events: {
click: MouseEvent;
keydown: KeyboardEvent;
keyup: KeyboardEvent;
focus: FocusEvent;
blur: FocusEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
mouseover: MouseEvent;
mouseout: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
exports?: undefined;
bindings?: undefined;
};
export type LineChartLightProps = typeof __propDef.props;
export type LineChartLightEvents = typeof __propDef.events;
export type LineChartLightSlots = typeof __propDef.slots;
export default class LineChartLight extends SvelteComponent<LineChartLightProps, LineChartLightEvents, LineChartLightSlots> {
}
export {};