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

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