solved lint issues, added typedoc, fixed lgtm warnings

This commit is contained in:
lotte
2020-06-30 13:44:38 +02:00
parent c7994f9d90
commit 09665dfbe2
12 changed files with 39 additions and 14 deletions

View File

@@ -24,7 +24,13 @@ const SCRIPT_QUERY_PARAMETER = 'script';
deps: [[new Optional(), NgForm]] } ]
})
export class ScriptsSelectComponent implements OnInit, OnDestroy {
/**
* Emits the selected script when the selection changes
*/
@Output() select: EventEmitter<Script> = new EventEmitter<Script>();
/**
* All available scripts
*/
scripts$: Observable<Script[]>;
private _selectedScript: Script;
private routeSub: Subscription;