export type CdnConfig = { from: string | string[]; module: { [name: string]: ModuleConfig; }; timeout: number; retry: number; }; export type ModuleConfig = { scope: string; version: string; js: string; css?: string; direct?: boolean; };