mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 06:43:12 +00:00
13 lines
242 B
TypeScript
13 lines
242 B
TypeScript
|
|
export type ShardInfo = {
|
||
|
|
clusterId: number;
|
||
|
|
shards: number[];
|
||
|
|
};
|
||
|
|
|
||
|
|
export type ContentTopicInfo = {
|
||
|
|
clusterId?: number;
|
||
|
|
contentTopics: string[];
|
||
|
|
};
|
||
|
|
|
||
|
|
export type StaticSharding = ShardInfo;
|
||
|
|
export type AutoSharding = ContentTopicInfo;
|