feat: Add common types and interfaces for accessibility, agents, artifacts, assistants, and tools

This commit is contained in:
Marco Beretta 2025-07-06 12:26:03 +02:00
parent dcaa5af598
commit 1380db85cb
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
10 changed files with 807 additions and 0 deletions

View file

@ -0,0 +1,6 @@
export interface AnnounceOptions {
message: string;
isStatus?: boolean;
}
export const MESSAGE_UPDATE_INTERVAL = 7000;