Update README.md

This commit is contained in:
Aleksandr Statciuk 2022-01-19 16:08:32 +03:00
parent d4d4748906
commit a4a47f338a
1 changed files with 8 additions and 6 deletions

View File

@ -159,12 +159,14 @@ module.exports = {
return [ return [
{ {
title, // program title (required) title, // program title (required)
start, // program start time (required) start, // start time of the program (required)
stop, // program end time (optional) stop, // end time of the program (required)
description, // program description (optional) description, // description of the program (optional)
category, // program category (optional) category, // program type (optional)
icon, // program icon (optional) season, // season number (optional)
lang // program language (default: 'en') episode, // episode number (optional)
icon, // image associated with the program (optional)
lang // language of the description (default: 'en')
}, },
... ...
] ]