ShardId
Constructors
Models
Signature
declare class ShardId extends { readonly group: string; readonly id: number;} { constructor(...args: [props: { readonly group: string; readonly id: number; }, options?: MakeOptions]); readonly [TypeId]: typeof TypeId; "~effect/interfaces/Equal"(that: ShardId): boolean; "~effect/interfaces/Hash"(): number; toString(): string; static fromString(s: string): ShardId; static fromStringEncoded(s: string): { readonly group: string; readonly id: number; }; static toString(shardId: { readonly group: string; readonly id: number; }): string;}