mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 09:49:20 +02:00
25 lines
483 B
TypeScript
25 lines
483 B
TypeScript
import { ActorImage } from '../index.js'
|
|
|
|
export interface About {
|
|
instance: {
|
|
name: string
|
|
shortDescription: string
|
|
description: string
|
|
terms: string
|
|
|
|
codeOfConduct: string
|
|
hardwareInformation: string
|
|
|
|
creationReason: string
|
|
moderationInformation: string
|
|
administrator: string
|
|
maintenanceLifetime: string
|
|
businessModel: string
|
|
|
|
languages: string[]
|
|
categories: number[]
|
|
|
|
banners: ActorImage[]
|
|
avatars: ActorImage[]
|
|
}
|
|
}
|