mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-06-12 16:51:02 +00:00
262dbd6f14
* Handle startup time * Remove dead code * Bump protocol version + FE changes
13 lines
358 B
TypeScript
13 lines
358 B
TypeScript
export * from './helpers';
|
|
export * from './id';
|
|
export * from './stringify';
|
|
export * from './SortedCollection';
|
|
|
|
import * as Types from './types';
|
|
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 = 31 as Types.FeedVersion;
|