fix(package): include position in progress circle interface

This commit is contained in:
Luke
2022-09-17 13:57:54 +02:00
parent 7529e7436b
commit ea40c9c8d5

View File

@@ -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;
}