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