aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/view-models/tutorial-end/tutorial-end.ts
blob: 1787cd5937dd10c8e2c611155ea2794a43e1b448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
'use strict';

interface ITutorialEndViewModelScope extends ng.IScope {
}

export class TutorialEndViewModel {

    static '$inject' = [
        '$scope'
    ];

    constructor(private $scope:ITutorialEndViewModelScope) {
        this.init();
    }

    private init = ():void => {

    }

}