@sfenton/react-native-readium-with-cfi
Version:
A react-native wrapper for https://readium.org/ with CFI support
19 lines (18 loc) • 417 B
TypeScript
/**
* An interface representing the Readium Link object.
*/
export interface Link {
href: string;
templated: boolean;
type?: string | null;
title?: string | null;
rels?: Set<string>;
properties?: any;
height?: number | null;
width?: number | null;
bitrate?: number | null;
duration?: number | null;
languages?: string[];
alternates?: Link[];
children?: Link[];
}