Skip to content

Commit 24226ec

Browse files
authored
fix(browser): keep untrack selection type private
1 parent 0e51404 commit 24226ec

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

extensions/browser/src/browser/session-tab-untrack-selection.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
export type SessionTabUntrackSelection = "volatile" | "durable" | "ambiguous" | "missing";
2-
31
export function selectSessionTabToUntrack(params: {
42
volatileAvailable: boolean;
53
durableAvailable: boolean;
@@ -9,7 +7,7 @@ export function selectSessionTabToUntrack(params: {
97
durableIsExact: boolean;
108
hasVolatileExactCandidate: boolean;
119
hasDurableExactCandidate: boolean;
12-
}): SessionTabUntrackSelection {
10+
}): "volatile" | "durable" | "ambiguous" | "missing" {
1311
if (params.volatileIsExact && !params.hasDurableExactCandidate) {
1412
return "volatile";
1513
}

0 commit comments

Comments
 (0)