Sparklines (#65)

This commit is contained in:
Maciej Hirsz
2018-09-28 13:47:39 +02:00
committed by GitHub
parent 250e0db51e
commit f9078c6979
19 changed files with 351 additions and 34 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ import * as FeedMessage from './feed';
export { Types, FeedMessage };
// Increment this if breaking changes were made to types in `feed.ts`
export const VERSION: Types.FeedVersion = 14 as Types.FeedVersion;
export const VERSION: Types.FeedVersion = 15 as Types.FeedVersion;
+1 -1
View File
@@ -25,5 +25,5 @@ export type CPUUse = Opaque<number, 'CPUUse'>;
export type BlockDetails = [BlockNumber, BlockHash, Milliseconds, Timestamp, Maybe<PropagationTime>];
export type NodeDetails = [NodeName, NodeImplementation, NodeVersion, Maybe<Address>];
export type NodeStats = [PeerCount, TransactionCount, Maybe<MemoryUse>, Maybe<CPUUse>];
export type NodeStats = [PeerCount, TransactionCount, Array<MemoryUse>, Array<CPUUse>];
export type NodeLocation = [Latitude, Longitude, City];