You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
509 B
10 lines
509 B
export default Loadable;
|
|
declare function Loadable(opts: any): React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<any>>;
|
|
declare namespace Loadable {
|
|
export { LoadableMap as Map };
|
|
export function preloadAll(): Promise<any>;
|
|
export function preloadReady(ids?: any[]): Promise<any>;
|
|
}
|
|
import React from "react";
|
|
declare function LoadableMap(opts: any): React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<any>>;
|