Skip to content

Commit

Permalink
Export types that are used by other already exported types
Browse files Browse the repository at this point in the history
  • Loading branch information
acelaya committed Jul 6, 2023
1 parent 2d1673e commit fcadcee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sidebar/store/modules/filters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ export type FilterOption = {
/**
* Valid/recognized filters
*/
type FilterKey = 'user';
export type FilterKey = 'user';

type Filters = Partial<Record<FilterKey, FilterOption | undefined>>;
export type Filters = Partial<Record<FilterKey, FilterOption | undefined>>;

type FocusState = {
active: boolean;
Expand Down

0 comments on commit fcadcee

Please sign in to comment.