Skip to content

Commit

Permalink
fix(package): include position in progress circle interface
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed Sep 17, 2022
1 parent 7529e74 commit ea40c9c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package/client/resource/interface/progress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ interface PropProps {

interface ProgressProps {
duration: number;
position?: 'middle' | 'bottom';
useWhileDead?: boolean;
allowRagdoll?: boolean;
allowCuffed?: boolean;
Expand Down Expand Up @@ -41,7 +42,7 @@ interface ProgressProps {
};
}

interface ProgressbarProps extends ProgressProps {
interface ProgressbarProps extends Omit<ProgressProps, 'position'> {
label: string;
}

Expand Down

0 comments on commit ea40c9c

Please sign in to comment.