diff --git a/src/pregmod/FCTV/FCTV.js b/src/pregmod/FCTV/FCTV.js
index 69f1c6a574e8c6edc6329ef6a4fd5f96767f8409..d006274c95c5ed6e64fc810dc92bdabf48f44110 100644
--- a/src/pregmod/FCTV/FCTV.js
+++ b/src/pregmod/FCTV/FCTV.js
@@ -381,6 +381,7 @@ globalThis.FctvDisplay = function({usedRemote = 0, seeAll = 0} = {}) {
 	function getEpisode(sel) {
 		let epToShow = -1;
 		const epsArray = [];
+		/** @type {FctvChannel} */
 		const channel = App.Data.FCTV.channels[sel];
 		const viewedCount = V.FCTV.channel[num(sel, true)];
 		for (let i = 0; i < App.Data.FCTV.channels[sel].episode.length; i++) {
@@ -416,6 +417,7 @@ globalThis.FctvDisplay = function({usedRemote = 0, seeAll = 0} = {}) {
 	function displayShow() {
 		const frag = new DocumentFragment();
 		const sel = V.FCTV.channel.selected;
+		/** @type {FctvChannel} */
 		const channel = App.Data.FCTV.channels[sel];
 		const epToShow = getEpisode(sel);
 		if (epToShow === -1) {
diff --git a/src/pregmod/FCTV/FCTVshows.js b/src/pregmod/FCTV/FCTVshows.js
index d8571890be167dfb598978ac05eeaa18f55508c2..86b553d1aca3a7c8571500b73cb2133c1e379f0d 100644
--- a/src/pregmod/FCTV/FCTVshows.js
+++ b/src/pregmod/FCTV/FCTVshows.js
@@ -1,13 +1,8 @@
 /**
  * @typedef {object<string, App.Entity.SlaveState>} FctvActor
- * @property {string} slave name
  */
 
-/**
- * @typedef {object<string, FctvActor[]>} FctvActors
- */
-
-/** @type {object<string, FctvActor>} */
+/** @type {object.<string, FctvActor>} */
 App.Data.FCTV.actors = {
 	get millie() {
 		const slave = BaseSlave();
@@ -519,23 +514,19 @@ App.Data.FCTV.actors = {
 	}
 };
 
-/**
- * @typedef {object<string, FctvChannel[]>} FctvChannels
- */
-
 /**
  * @typedef {object} FctvChannel
  * @property {FctvTags} [tags]
  * @property {boolean} loop After an initial viewing, should the episodes continue to play in order?
  * @property {string} intro
- * @property {array<FctvEpisode[]>} episode
- * @property {Function(App.Entity.SlaveState):string} outro
+ * @property {FctvEpisode[]} episode
+ * @property {function(App.Entity.SlaveState, [number]):string} outro Takes slave and episode number
  */
 
 /**
  * @typedef {object} FctvEpisode
- * @property {FctvTags[]} [tags]
- * @property {array<App.Entity.SlaveState>} [slaves]
+ * @property {FctvTags} [tags]
+ * @property {App.Entity.SlaveState[]} [slaves]
  * @property {string} text HTML embedded
  */
 
@@ -548,6 +539,7 @@ App.Data.FCTV.actors = {
  * @property {boolean} [dicks]
  */
 
+/** @type {object.<number, FctvChannel>} */
 App.Data.FCTV.channels = {
 	0: { // News
 		tags: {},