@tialro2/rnbokit
Version:
<img width="493" alt="Screenshot 2023-11-24 at 15 43 41" src="static/sreenshot.jpeg">
18 lines (17 loc) • 398 B
TypeScript
export default ProgressBar;
type ProgressBar = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<Props>): void;
};
declare const ProgressBar: import("svelte").Component<{
value?: any;
min?: number;
max?: number;
labelledby?: string;
}, {}, "">;
type Props = {
value?: any;
min?: number;
max?: number;
labelledby?: string;
};