Skip to content

Commit

Permalink
SALTO-5063: export FormattedImportantValueData (#5106)
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhassid authored Nov 21, 2023
1 parent 01e5a97 commit 216230e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter-utils/src/important_values.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const { isDefined } = values

type ImportantValue = { value: string; indexed: boolean; highlighted: boolean }
export type ImportantValues = ImportantValue[]
type FormattedImportantValueData = { key: string; value: Value }
export type FormattedImportantValueData = { key: string; value: Value }

const isValidIndexedValueData = (importantValue: ImportantValue, valueData: unknown): boolean => {
if (importantValue.indexed !== true) {
Expand Down

0 comments on commit 216230e

Please sign in to comment.