forked from MarseyWorld/MarseyWorld
21 lines
341 B
TypeScript
21 lines
341 B
TypeScript
|
declare var process: {
|
||
|
env: Record<string, any>;
|
||
|
};
|
||
|
|
||
|
declare interface ChatSpeakResponse {
|
||
|
username: string;
|
||
|
avatar: string;
|
||
|
hat: string;
|
||
|
namecolor: string;
|
||
|
text: string;
|
||
|
text_censored: string;
|
||
|
text_html: string;
|
||
|
time: number;
|
||
|
}
|
||
|
|
||
|
declare interface EmojiModSelection {
|
||
|
large: boolean;
|
||
|
mirror: boolean;
|
||
|
pat: boolean;
|
||
|
}
|