PeerTube/shared/models/actors/actor-image.model.ts

9 lines
118 B
TypeScript
Raw Normal View History

2021-04-06 11:35:56 +02:00
export interface ActorImage {
2017-12-04 10:34:40 +01:00
path: string
2020-05-29 16:16:24 +02:00
url?: string
2017-12-04 10:34:40 +01:00
createdAt: Date | string
updatedAt: Date | string
}