mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-18 15:36:02 +01:00
fix(package): include position in progress circle interface
This commit is contained in:
@@ -13,6 +13,7 @@ interface PropProps {
|
|||||||
|
|
||||||
interface ProgressProps {
|
interface ProgressProps {
|
||||||
duration: number;
|
duration: number;
|
||||||
|
position?: 'middle' | 'bottom';
|
||||||
useWhileDead?: boolean;
|
useWhileDead?: boolean;
|
||||||
allowRagdoll?: boolean;
|
allowRagdoll?: boolean;
|
||||||
allowCuffed?: boolean;
|
allowCuffed?: boolean;
|
||||||
@@ -41,7 +42,7 @@ interface ProgressProps {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ProgressbarProps extends ProgressProps {
|
interface ProgressbarProps extends Omit<ProgressProps, 'position'> {
|
||||||
label: string;
|
label: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user