Files
codetyper.cli/src/interfaces/StreamCallbacksWithState.ts
Carlos Gutierrez 6111530c08 feat: add pink-purple theme, fix image paste race condition, allow @/commands anywhere in input
- Add Pink Purple theme (hot pink/purple/magenta on dark plum background)
- Fix race condition where clearPastedImages() in input-area ran before
  the async message handler could read the images, silently dropping them
- Allow @ file picker and / command menu to trigger at any cursor position,
  not just when the input is empty
- Update CHANGELOG and README with new changes
2026-02-14 06:39:08 -05:00

12 lines
256 B
TypeScript

/**
* Stream callbacks with state tracking
*/
import type { StreamCallbacks } from "@/types/streaming";
export interface StreamCallbacksWithState {
callbacks: StreamCallbacks;
hasReceivedContent: () => boolean;
hasReceivedUsage: () => boolean;
}