UNPKG

r2-opds-js

Version:

Readium 2 'opds' for NodeJS (TypeScript)

13 lines (12 loc) 464 B
import { IWithAdditionalJSON, JsonMap } from "r2-lcp-js/dist/es7-es2016/src/serializable"; import { OPDSAuthentication } from "./opds2-authentication"; import { OPDSLink } from "./opds2-link"; export declare class OPDSAuthenticationDoc implements IWithAdditionalJSON { Title: string; Id: string; Description: string; Links: OPDSLink[]; Authentication: OPDSAuthentication[]; AdditionalJSON: JsonMap; protected _OnDeserialized(): void; }