0c9668f779
Move ffmpeg functions to @shared
12 lines
177 B
TypeScript
12 lines
177 B
TypeScript
export interface Runner {
|
|
id: number
|
|
|
|
name: string
|
|
description: string
|
|
|
|
ip: string
|
|
lastContact: Date | string
|
|
|
|
createdAt: Date | string
|
|
updatedAt: Date | string
|
|
}
|