mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-04 19:53:09 +02:00
8 lines
101 B
TypeScript
8 lines
101 B
TypeScript
|
namespace Entity {
|
||
|
export type History = {
|
||
|
day: string;
|
||
|
uses: number;
|
||
|
accounts: number;
|
||
|
};
|
||
|
}
|