turkmentv_front/typings/channels.type.ts

12 lines
215 B
TypeScript
Raw Permalink Normal View History

2024-08-19 12:44:56 +00:00
import { ISource } from './source.type';
export interface IChannels extends ISource {
// active: boolean;
source: string;
id: number;
img: string;
channel: number;
name: string;
// source: ISource;
}