UNPKG

@stencila/thema

Version:

Themes for executable documents

14 lines (13 loc) 303 B
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 {};