Created
November 4, 2019 05:20
-
-
Save kylelix7/196dd22e0ed66c5380bab9be6305fb50 to your computer and use it in GitHub Desktop.
models.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
export interface NameValPair { | |
'name': string, | |
'value': number | |
}; | |
export interface HistoricalData { | |
'name': string, | |
'series': NameValPair[] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment