refactor: rename states for clarity and consistency
- Updated state names in constants and related files from WAIT, REACT, TYPE, SLEEP to WAITING, REACTING, TYPING, SLEEPING. - Adjusted all references to the renamed states across the codebase, including state handlers and transition logic. - Ensured that logging messages reflect the new state names for better readability.
This commit is contained in:
8
src/index.d.ts
vendored
8
src/index.d.ts
vendored
@ -16,10 +16,10 @@ export const ClipTypes: {
|
||||
};
|
||||
|
||||
export const States: {
|
||||
readonly WAIT: 'wait';
|
||||
readonly REACT: 'react';
|
||||
readonly TYPE: 'type';
|
||||
readonly SLEEP: 'sleep';
|
||||
readonly WAITING: 'wait';
|
||||
readonly REACTING: 'react';
|
||||
readonly TYPING: 'type';
|
||||
readonly SLEEPING: 'sleep';
|
||||
};
|
||||
|
||||
export const Emotions: {
|
||||
|
||||
Reference in New Issue
Block a user