* fix: Add typed services * fix: Typed services - PR changes * remaining of the cineService and toolbarService renaming --------- Co-authored-by: Alireza <ar.sedghi@gmail.com>
16 lines
371 B
JavaScript
16 lines
371 B
JavaScript
import CommandsManager from './CommandsManager';
|
|
import HotkeysManager from './HotkeysManager';
|
|
import ImageSet from './ImageSet';
|
|
import MetadataProvider from './MetadataProvider';
|
|
|
|
export { MetadataProvider, CommandsManager, HotkeysManager, ImageSet };
|
|
|
|
const classes = {
|
|
MetadataProvider,
|
|
CommandsManager,
|
|
HotkeysManager,
|
|
ImageSet,
|
|
};
|
|
|
|
export default classes;
|