mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-04-27 07:48:01 -07:00
parent
0994d10410
commit
c4bf9eb61c
61 changed files with 207 additions and 737 deletions
|
|
@ -12,3 +12,5 @@ export * from './forms';
|
|||
export * from './message';
|
||||
export * from './settings';
|
||||
export * from './languages';
|
||||
export * from './logs';
|
||||
export * from './session';
|
||||
|
|
|
|||
8
webclient/src/types/logs.ts
Normal file
8
webclient/src/types/logs.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
export interface LogFilters {
|
||||
userName: string;
|
||||
ipAddress: string;
|
||||
gameName: string;
|
||||
gameId: string;
|
||||
message: string;
|
||||
logLocation: string;
|
||||
}
|
||||
7
webclient/src/types/session.ts
Normal file
7
webclient/src/types/session.ts
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
export enum NotificationType {
|
||||
UNKNOWN = 0,
|
||||
PROMOTED = 1,
|
||||
WARNING = 2,
|
||||
IDLEWARNING = 3,
|
||||
CUSTOM = 4,
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue