mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
import { ActivityVideoUrlObject } from './common-objects'
|
|
|
|
export interface CacheFileObject {
|
|
id: string
|
|
type: 'CacheFile',
|
|
object: string
|
|
expires: string
|
|
url: ActivityVideoUrlObject
|
|
}
|