aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/activitypub/objects/cache-file-object.ts
blob: 0a5125f5b6fea0bd42dd38cb41e71d1377185363 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { ActivityVideoUrlObject } from './common-objects'

export interface CacheFileObject {
  id: string
  type: 'CacheFile',
  object: string
  expires: string
  url: ActivityVideoUrlObject
}