@svta/common-media-library
Version:
A common library for media playback in JavaScript
8 lines • 340 B
TypeScript
import type { Manifest } from '../types/manifest/Manifest.js';
import type { Presentation } from '../types/model/Presentation.js';
export type Mapper = {
toHam(manifest: Manifest): Presentation[];
toManifest(presentation: Presentation[]): Manifest;
getManifestMetadata(): any | undefined;
};
//# sourceMappingURL=Mapper.d.ts.map