export interface IParsedDocMeta { readonly fingerprint: string; readonly nrPages: number; readonly title?: string; readonly creator?: string; readonly description?: string; readonly doi?: string; readonly link?: string; readonly props: Readonly; } export interface DocProps { [key: string]: string; }