monkeeShark/packages/megalodon/src/mastodon/entities/source.ts
2023-09-25 01:49:57 +02:00

10 lines
219 B
TypeScript

/// <reference path="field.ts" />
namespace MastodonEntity {
export type Source = {
privacy: string | null
sensitive: boolean | null
language: string | null
note: string
fields: Array<Field>
}
}