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