sepia-search-motore-di-rice.../server/types/channel.model.ts

17 lines
456 B
TypeScript
Raw Normal View History

2020-02-19 15:39:35 +01:00
import { IndexableDoc } from './elastic-search.model'
import { VideoChannel, VideoChannelSummary } from '@shared/models'
export interface IndexableChannelSummary extends VideoChannelSummary, IndexableDoc {
}
export interface IndexableChannel extends VideoChannel, IndexableDoc {
}
export interface DBChannel extends Omit<VideoChannel, 'isLocal'> {
indexedAt: Date
}
export interface DBChannelSummary extends VideoChannelSummary {
indexedAt: Date
}