@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
12 lines (11 loc) • 365 B
TypeScript
declare const UNPKG_API = "https://unpkg.com";
declare const ALIYUN_API = "https://registry.npmmirror.com";
export type CDN = 'aliyun' | 'unpkg';
export interface CdnApi {
path: string;
pkg: string;
proxy?: CDN;
version?: string;
}
export declare const genCdnUrl: ({ pkg, version, path, proxy }: CdnApi) => string;
export { ALIYUN_API, UNPKG_API };