PeerTube/shared/models/pods/pod.model.ts

7 lines
90 B
TypeScript

export interface Pod {
id: number,
host: string,
score: number,
createdAt: Date
}