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