mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-03 01:39:37 +02:00
14 lines
196 B
TypeScript
14 lines
196 B
TypeScript
export interface Runner {
|
|
id: number
|
|
|
|
name: string
|
|
description: string
|
|
|
|
ip: string
|
|
lastContact: Date | string
|
|
|
|
version: string
|
|
|
|
createdAt: Date | string
|
|
updatedAt: Date | string
|
|
}
|