-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Will Pride
committed
Jun 25, 2024
1 parent
83d8858
commit 778c409
Showing
3 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,11 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
import type { FilterConfig } from './FilterConfig'; | ||
import type { FilterVariableValue } from './FilterVariableValue'; | ||
import type { LabelValue } from './LabelValue'; | ||
|
||
export interface EmbedFilters { | ||
filters: Array<FilterConfig>; | ||
defaultValues: Record<string, FilterVariableValue>; | ||
uniqueValues: Record<string, Array<[string, string]>>; | ||
// uniqueValues: Record<string, Array<[string, string]>>; | ||
uniqueValuesV2: Record<string, Array<LabelValue>>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. | ||
|
||
export interface LabelValue { | ||
label: string; | ||
value: string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters