diff options
Diffstat (limited to 'app/Models/ViewJavascript.php')
| -rw-r--r-- | app/Models/ViewJavascript.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/app/Models/ViewJavascript.php b/app/Models/ViewJavascript.php new file mode 100644 index 000000000..f14810572 --- /dev/null +++ b/app/Models/ViewJavascript.php @@ -0,0 +1,16 @@ +<?php + +final class FreshRSS_ViewJavascript extends FreshRSS_View { + + /** @var array<FreshRSS_Category> */ + public $categories; + /** @var array<FreshRSS_Feed> */ + public $feeds; + /** @var array<FreshRSS_Tag> */ + public $tags; + + /** @var string */ + public $nonce; + /** @var string */ + public $salt1; +} |
