mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-04 18:43:08 +02:00
9 lines
130 B
TypeScript
9 lines
130 B
TypeScript
|
namespace Entity {
|
||
|
export type Activity = {
|
||
|
week: string;
|
||
|
statuses: string;
|
||
|
logins: string;
|
||
|
registrations: string;
|
||
|
};
|
||
|
}
|