nessprim-planby-pro/dist/Epg/test/db/channels.d.ts
2024-08-04 16:14:27 -06:00

27 lines
544 B
TypeScript

interface BuildChannel {
[key: string]: any;
}
export declare function buildChannel(overrides?: BuildChannel): {
country: any;
logo: any;
provider: number;
title: any;
type: any;
uuid: string;
year: any;
};
export declare function buildChannelWithPosition(overrides?: BuildChannel): {
position: {
top: number;
height: number;
};
country: any;
logo: any;
provider: number;
title: any;
type: any;
uuid: string;
year: any;
};
export {};