mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2025-01-04 13:13:20 +02:00
3fd2b55406
This reverts commit 89eea5df52
.
11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
/// <reference path="account.ts" />
|
|
/// <reference path="status.ts" />
|
|
/// <reference path="tag.ts" />
|
|
|
|
namespace Entity {
|
|
export type Results = {
|
|
accounts: Array<Account>
|
|
statuses: Array<Status>
|
|
hashtags: Array<Tag>
|
|
}
|
|
}
|