Skip to content

Commit

Permalink
export MatchingStrategies as const, fixes #1588
Browse files Browse the repository at this point in the history
  • Loading branch information
jonespen committed Oct 17, 2023
1 parent 8a74e35 commit da2fbc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export type IndexesResults<T> = ResourceResults<T> & {}
export const MatchingStrategies = {
ALL: 'all',
LAST: 'last',
}
} as const

export type MatchingStrategies = typeof MatchingStrategies[keyof typeof MatchingStrategies]

Expand Down

0 comments on commit da2fbc0

Please sign in to comment.