Hyperlinkv0.9.0-beta.0

Gate

export class MetricsKeyCollision extends Data.TaggedError("MetricsKeyCollision")<{
  readonly metricsKey: string;
  readonly apiId: string;
}> {
  override get message(): string {
    return (
      `HttpApi group id "${this.metricsKey}" collides with Gate.HttpApiClient nest key ` +
      `on api "${this.apiId}". Rename the group or pass metricsKey: "…" (const).`
    );
  }
}