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

9 lines
118 B
TypeScript
Raw Normal View History

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