@ngx-telly/plugin-captions
Version:
Telly - Caption picker plugin
22 lines (21 loc) • 1.33 kB
TypeScript
import { OnChanges, OnInit, SimpleChanges } from '@angular/core';
import { PlayerComponent } from '@ngx-telly/player';
import { TellyEventsService } from '@ngx-telly/player/services';
import { Caption } from '../../caption';
import * as i0 from "@angular/core";
export declare class CaptionSelectComponent implements OnInit, OnChanges {
icon: import("@angular/core").InputSignal<string>;
size: import("@angular/core").InputSignal<string>;
captions: import("@angular/core").InputSignal<Caption[]>;
current: import("@angular/core").InputSignal<string | number | undefined>;
events: TellyEventsService;
player: PlayerComponent;
show: boolean;
get display(): "flex" | "none";
onClick(): void;
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
onCaptionSelect(track: Caption): void;
static ɵfac: i0.ɵɵFactoryDeclaration<CaptionSelectComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<CaptionSelectComponent, "telly-caption-select", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "captions": { "alias": "captions"; "required": false; "isSignal": true; }; "current": { "alias": "current"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
}