@readium/shared
Version:
Shared models to be used across other Readium projects and implementations in Typescript
13 lines (12 loc) • 457 B
text/typescript
/* 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.
*/
/** Hint about the nature of the layout for the publication.
* https://readium.org/webpub-manifest/contexts/default/#layout-and-reading-progression
*/
export enum Layout {
reflowable = 'reflowable',
fixed = 'fixed',
scrolled = 'scrolled'
}