mirror of https://github.com/Chocobozzz/PeerTube
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
|
import { ActivityVideoUrlObject } from './common-objects'
|
||
|
|
||
|
export interface CacheFileObject {
|
||
|
id: string
|
||
|
type: 'CacheFile',
|
||
|
object: string
|
||
|
expires: string
|
||
|
url: ActivityVideoUrlObject
|
||
|
}
|