Skip to content

Commit

Permalink
feat: update
Browse files Browse the repository at this point in the history
Signed-off-by: SuZhou-Joe <suzhou@amazon.com>
  • Loading branch information
SuZhou-Joe committed Jul 21, 2024
1 parent 55100c1 commit 86d92f7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ function sortBy<T>(key: KeyOf<T>) {
return (a: T, b: T): number => (a[key] > b[key] ? -1 : b[key] > a[key] ? 1 : 0);
}

type DetailedRecentlyAccessedItem = SavedObjectWithMetadata &
ChromeRecentlyAccessedHistoryItem &
type DetailedRecentlyAccessedItem = ChromeRecentlyAccessedHistoryItem &
SavedObjectWithMetadata &
ChromeRecentlyAccessedHistoryItem['meta'] & {
updatedAt: number;
workspaceName?: string;
Expand Down

0 comments on commit 86d92f7

Please sign in to comment.