neet/masto.js

View on GitHub
src/interfaces/config/web-socket-config.ts

Summary

Maintainability
A
0 mins
Test Coverage
export interface WebSocketConfig {
  getMaxAttempts(): number;
  getProtocols(protocols?: readonly string[]): string[];
  resolvePath(path: string, params?: Record<string, unknown>): URL;
}