program-item.d.ts 245 Bytes
export declare const PROGRAM_ITEM_TYPE_SLIDESHOW = "slideshow";
export declare const PROGRAM_ITEM_TYPE_VIDEO = "video";
export declare class ProgramItem {
    protected _type: string;
    protected _data: any;
    type: string;
    data: any;
}