37 lines
1.4 KiB
TypeScript
37 lines
1.4 KiB
TypeScript
import { SvelteComponentTyped } from "svelte";
|
|
declare const __propDef: {
|
|
props: {
|
|
[x: string]: any;
|
|
/** Set the meter fill amount. Shows as indeterminate when set `undefined`.*/
|
|
value?: number | undefined;
|
|
/** Sets the base stroke width. Scales responsively.*/
|
|
stroke?: number | undefined;
|
|
/** Sets the base font size. Scales responsively.*/
|
|
font?: number | undefined;
|
|
/** Sets the stoke-linecap value*/
|
|
strokeLinecap?: "butt" | "round" | "square" | undefined;
|
|
/** Provide classes to set the width.*/
|
|
width?: string | undefined;
|
|
/** Provide classes to set meter color.*/
|
|
meter?: string | undefined;
|
|
/** Provide classes to set track color.*/
|
|
track?: string | undefined;
|
|
/** Provide classes to set the SVG text fill color.*/
|
|
fill?: string | undefined;
|
|
/** Provide the ARIA labelledby value.*/
|
|
labelledby?: string | undefined;
|
|
};
|
|
events: {
|
|
[evt: string]: CustomEvent<any>;
|
|
};
|
|
slots: {
|
|
default: {};
|
|
};
|
|
};
|
|
export type ProgressRadialProps = typeof __propDef.props;
|
|
export type ProgressRadialEvents = typeof __propDef.events;
|
|
export type ProgressRadialSlots = typeof __propDef.slots;
|
|
export default class ProgressRadial extends SvelteComponentTyped<ProgressRadialProps, ProgressRadialEvents, ProgressRadialSlots> {
|
|
}
|
|
export {};
|