12 lines
405 B
TypeScript
12 lines
405 B
TypeScript
|
// import ResumptionToken from './ResumptionToken';
|
||
|
|
||
|
export default interface DoiClientContract {
|
||
|
username: string;
|
||
|
password: string;
|
||
|
serviceUrl: string;
|
||
|
// prefix: string;
|
||
|
// base_domain: string;
|
||
|
registerDoi(doiValue: string, xmlMeta: string, landingPageUrl: string);
|
||
|
// get(key: string): Promise<ResumptionToken | null>;
|
||
|
// set(token: ResumptionToken): Promise<string>;
|
||
|
}
|