8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
declare namespace MastodonEntity {
|
|
type Activity = {
|
|
week: string;
|
|
statuses: string;
|
|
logins: string;
|
|
registrations: string;
|
|
};
|
|
}
|