* Add Types

* Add Types
This commit is contained in:
Zach H 2024-06-17 00:32:36 -04:00 committed by GitHub
parent 0994d10410
commit c4bf9eb61c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
61 changed files with 207 additions and 737 deletions

View file

@ -12,3 +12,5 @@ export * from './forms';
export * from './message';
export * from './settings';
export * from './languages';
export * from './logs';
export * from './session';

View file

@ -0,0 +1,8 @@
export interface LogFilters {
userName: string;
ipAddress: string;
gameName: string;
gameId: string;
message: string;
logLocation: string;
}

View file

@ -0,0 +1,7 @@
export enum NotificationType {
UNKNOWN = 0,
PROMOTED = 1,
WARNING = 2,
IDLEWARNING = 3,
CUSTOM = 4,
};