Skip to content

Commit

Permalink
add public tags
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasIO committed Sep 8, 2023
1 parent e2681fd commit e059112
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/hooks/useIsMuted.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface UseIsMutedOptions {

/** @public */
export function useIsMuted(trackRef: TrackReferenceOrPlaceholder): boolean;
/** @deprecated this overload will be removed in a future version, pass in trackRef instead */
/** @public @deprecated this overload will be removed in a future version, pass in trackRef instead */
export function useIsMuted(source: Track.Source, options?: UseIsMutedOptions): boolean;
export function useIsMuted(
sourceOrTrackRef: TrackReferenceOrPlaceholder | Track.Source,
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/hooks/useTrackMutedIndicator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface TrackMutedIndicatorReturnType {
export function useTrackMutedIndicator(
trackRef?: TrackReferenceOrPlaceholder,
): TrackMutedIndicatorReturnType;
/** @deprecated this overload will be removed in a future version, pass in trackRef instead */
/** @public @deprecated this overload will be removed in a future version, pass in trackRef instead */
export function useTrackMutedIndicator(
source: Track.Source,
options?: UseTrackMutedIndicatorOptions,
Expand Down

0 comments on commit e059112

Please sign in to comment.