svelte-tuicss
Version:
Svelte component library for the Tuicss UI framework.
32 lines (31 loc) • 947 B
TypeScript
import { SvelteComponent } from "svelte";
import { type ValueFunction } from '../helpers.js';
declare const __propDef: {
props: {
[x: string]: any;
size: {
width: string;
height: string;
};
values: {
label: string;
value: number;
}[];
labels?: string[] | undefined;
valueScaler?: ValueFunction | undefined;
valueFormatter?: ValueFunction | undefined;
minValue?: number | undefined;
maxValue?: number | undefined;
horizontal?: boolean | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type TuiChartProps = typeof __propDef.props;
export type TuiChartEvents = typeof __propDef.events;
export type TuiChartSlots = typeof __propDef.slots;
export default class TuiChart extends SvelteComponent<TuiChartProps, TuiChartEvents, TuiChartSlots> {
}
export {};