aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/cache-file-object.ts
diff options
context:
space:
mode:
Diffstat (limited to 'shared/models/activitypub/objects/cache-file-object.ts')
-rw-r--r--shared/models/activitypub/objects/cache-file-object.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/shared/models/activitypub/objects/cache-file-object.ts b/shared/models/activitypub/objects/cache-file-object.ts
new file mode 100644
index 000000000..0a5125f5b
--- /dev/null
+++ b/shared/models/activitypub/objects/cache-file-object.ts
@@ -0,0 +1,9 @@
1import { ActivityVideoUrlObject } from './common-objects'
2
3export interface CacheFileObject {
4 id: string
5 type: 'CacheFile',
6 object: string
7 expires: string
8 url: ActivityVideoUrlObject
9}