all files / core/states/ vg-states.ts

100% Statements 10/10
100% Branches 0/0
100% Functions 1/1
100% Lines 9/9
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21                        
import {Injectable} from '@angular/core';
 
 
export class VgStates {
    static VG_ENDED: string = 'ended';
    static VG_PAUSED: string = 'paused';
    static VG_PLAYING: string = 'playing';
    static VG_LOADING: string = 'waiting';
static decorators: DecoratorInvocation[] = [
{ type: Injectable },
];
/** @nocollapse */
static ctorParameters: ({type: any, decorators?: DecoratorInvocation[]}|null)[] = [
];
}
 
interface DecoratorInvocation {
  type: Function;
  args?: any[];
}