@ngx-telly/plugin-timecode
Version:
Telly - SMPTE timecode plugin
19 lines (18 loc) • 857 B
TypeScript
import { EventEmitter, OnInit } from '@angular/core';
import { PlayerComponent } from '@ngx-telly/player';
import { TellyEventsService } from '@ngx-telly/player/services';
import { Observable } from 'rxjs';
import { TellyTimecodeDirective } from '../directives/timecode.directive';
import * as i0 from "@angular/core";
export declare class TimecodeComponent implements OnInit {
timeClicked: EventEmitter<string>;
player: PlayerComponent;
directive: TellyTimecodeDirective;
events: TellyEventsService;
time$: Observable<string>;
ngOnInit(): void;
onTimeClick(): void;
round(sec: number): number;
static ɵfac: i0.ɵɵFactoryDeclaration<TimecodeComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<TimecodeComponent, "telly-timecode", never, {}, { "timeClicked": "timeClicked"; }, never, never, true, never>;
}