Skip to content

Commit

Permalink
fix: Fix file name case change
Browse files Browse the repository at this point in the history
  • Loading branch information
tjtanjin committed Sep 13, 2024
1 parent 5c969fc commit 21abc60
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/types/events/RcbTextAreaChangeValue.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { RcbBaseEvent } from "../internal/events/RcbBaseEvent";

/**
* Defines the data available for stop stream message event.
*/
export type RcbTextAreaChangeValueEvent = RcbBaseEvent<{
currValue: string;
prevValue: string;
}>;

0 comments on commit 21abc60

Please sign in to comment.