| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1× 2× 1× 1× 1× 1× 1× 1× 1× | 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[];
}
|