export interface articleData {
pdf: string;
figuresPdf?: string;
copyright: {
license: string;
};
}
interface Response {
ok: boolean;
article: articleData;
}
export default function (id: string, fetcher: WindowOrWorkerGlobalScope['fetch']): Promise<Response>;
export {};