planby
Version:
<div align="center" style="margin-bottom: 10px"> <a href="https://www.npmjs.com/package/planby"> <img src="https://i.postimg.cc/J0XMPHNQ/planby-logo.png" alt="Planby logo" /> </a> </div>
27 lines (26 loc) • 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 {};