oak-cli/lib/CdnConfig.d.ts

16 lines
285 B
TypeScript

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;
};