Finish moving videoTransform stuff to typescript

This commit is contained in:
Tamius Han 2021-02-09 00:42:52 +01:00
parent 0117d44422
commit a907d0d404
2 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,8 @@
import Debug from '../../conf/Debug';
import AspectRatioType from '../../../common/enums/AspectRatioType.enum';
import BrowserDetect from '../../conf/BrowserDetect';
import VideoData from '../video-data/VideoData';
import Logger from '../Logger';
// računa velikost videa za približevanje/oddaljevanje
@ -8,7 +10,10 @@ import BrowserDetect from '../../conf/BrowserDetect';
class Scaler {
// internal variables
//#region helper objects
conf: VideoData;
logger: Logger;
//#endregion
// functions
constructor(videoData) {