export interface JsLoaderOptions extends Record { timeout?: number; ignoreError?: boolean; cache?: boolean; } /** 加载 JS */ export default function jsLoader(src: string, options?: JsLoaderOptions): Promise;