UNPKG

@readium/shared

Version:

Shared models to be used across other Readium projects and implementations in Typescript

15 lines (14 loc) 580 B
/* Copyright 2025 Readium Foundation. All rights reserved. * Use of this source code is governed by a BSD-style license, * available in the LICENSE file present in the Github repository of the project. */ /** * Registered profiles. * https://readium.org/webpub-manifest/profiles/ */ export enum Profile { EPUB = 'https://readium.org/webpub-manifest/profiles/epub', AUDIOBOOK = 'https://readium.org/webpub-manifest/profiles/audiobook', DIVINA = 'https://readium.org/webpub-manifest/profiles/divina', PDF = 'https://readium.org/webpub-manifest/profiles/pdf' }