summaryrefslogtreecommitdiff
path: root/packages/megalodon/src/pleroma/entities/source.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/megalodon/src/pleroma/entities/source.ts')
-rw-r--r--packages/megalodon/src/pleroma/entities/source.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/packages/megalodon/src/pleroma/entities/source.ts b/packages/megalodon/src/pleroma/entities/source.ts
new file mode 100644
index 0000000000..f2fa74ab70
--- /dev/null
+++ b/packages/megalodon/src/pleroma/entities/source.ts
@@ -0,0 +1,10 @@
+/// <reference path="field.ts" />
+namespace PleromaEntity {
+ export type Source = {
+ privacy: string | null
+ sensitive: boolean | null
+ language: string | null
+ note: string
+ fields: Array<Field>
+ }
+}