This commit is contained in:
Anthony Kim
2026-01-21 11:01:09 -08:00
parent 63ebe2df5b
commit 5ecd980a83
-3
View File
@@ -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 _ <data> 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;
/**