rDrama/chat/global.d.ts
2023-08-27 11:42:16 -05:00

14 lines
242 B
TypeScript

declare const process: {
env: Record<string, any>;
};
declare interface IChatMessage {
id: string;
username: string;
user_id?: string;
avatar: string;
text: string;
text_html: string;
time: number;
quotes: null | string;
}