mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 06:56:03 +01:00
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
export interface CircleProgressbarProps {
|
|
label?: string;
|
|
duration: number;
|
|
position?: 'middle' | 'bottom';
|
|
percent?: boolean;
|
|
}
|
|
|
|
export interface ProgressbarProps {
|
|
label: string;
|
|
duration: number;
|
|
}
|