-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge RecommendatationResultView with its common class
PiperOrigin-RevId: 720756330
- Loading branch information
1 parent
47f3e44
commit 420031a
Showing
10 changed files
with
162 additions
and
142 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
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
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
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
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
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
36 changes: 0 additions & 36 deletions
36
.../components/overview_page/recommendation_result_view/recommendation_result_view_common.ts
This file was deleted.
Oops, something went wrong.
23 changes: 23 additions & 0 deletions
23
...ponents/overview_page/recommendation_result_view/recommendation_result_view_interfaces.ts
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,23 @@ | ||
/** | ||
* Interface for statement info. | ||
* Determines the id of the statement to be extracted from the | ||
* recommendation result. | ||
*/ | ||
export declare interface StatementInfo { | ||
id: string; | ||
color?: string; | ||
} | ||
|
||
/** Interface for statement data. */ | ||
export declare interface StatementData { | ||
value: string; | ||
color?: string; | ||
} | ||
|
||
/** Interface for tip info. */ | ||
export declare interface TipInfo { | ||
title: string; | ||
style?: {[key: string]: string}; | ||
tips: string[]; | ||
tipType: 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
Oops, something went wrong.