one
Version:
One is a new React Framework that makes Vite serve both native and web.
6 lines • 352 B
TypeScript
import { type ComponentType, type LazyExoticComponent } from 'react';
import { loadWithRetry } from './utils/dynamicImport';
export declare function lazyWithRetry<T extends ComponentType<any>>(loader: () => Promise<{
default: T;
}>, options?: Parameters<typeof loadWithRetry>[1]): LazyExoticComponent<T>;
//# sourceMappingURL=lazyWithRetry.d.ts.map