@ohayojp.com/components
Version:
Common business components of ohayojp.
16 lines (15 loc) • 482 B
TypeScript
import { OhayoConfigService, OhayoMediaConfig, LazyService } from '@ohayojp.com/util';
import { Observable } from 'rxjs';
export declare class MediaService {
private cogSrv;
private lazySrv;
private _cog;
private loading;
private loaded;
private notify$;
get cog(): OhayoMediaConfig;
set cog(val: OhayoMediaConfig);
constructor(cogSrv: OhayoConfigService, lazySrv: LazyService);
load(): this;
notify(): Observable<void>;
}