mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-10-30 13:04:12 +00:00
8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
/// <reference path="status.ts" />
|
|
|
|
namespace MastodonEntity {
|
|
export type Context = {
|
|
ancestors: Array<Status>
|
|
descendants: Array<Status>
|
|
}
|
|
}
|