From 5ecd980a83660d0939f1a486c1a11502f25c2e36 Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Wed, 21 Jan 2026 11:01:09 -0800 Subject: [PATCH] Comment --- src/common/parser/Types.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/common/parser/Types.ts b/src/common/parser/Types.ts index 04eabbea..2405dcb8 100644 --- a/src/common/parser/Types.ts +++ b/src/common/parser/Types.ts @@ -136,8 +136,6 @@ export type OscFallbackHandlerType = (ident: number, action: 'START' | 'PUT' | ' /** * APC handler types. - * APC (Application Program Command) sequences are used by protocols like - * Kitty Graphics Protocol. Format: ESC _ ESC \ */ export interface IApcHandler { /** @@ -147,7 +145,6 @@ export interface IApcHandler { start(): void; /** * Incoming data chunk. - * Note: Data is borrowed. */ put(data: Uint32Array, start: number, end: number): void; /**