chore: reformat code in README.md for improved readability

Applied consistent indentation and line-breaking rules to code and text sections in `README.md`, ensuring better formatting and alignment for readability. No functional changes made.
This commit is contained in:
David Snelling 2025-05-29 10:29:52 -07:00
parent f311b120c1
commit 95a72f4181
5 changed files with 1135 additions and 315 deletions

View file

@ -13,7 +13,7 @@ export enum AugmentationType {
ACTIVATION = 'activation',
WEBSOCKET = 'webSocket'
}
type WebSocketConnection = {
export type WebSocketConnection = {
connectionId: string
url: string
status: 'connected' | 'disconnected' | 'error'