6 lines
182 B
TypeScript
6 lines
182 B
TypeScript
import type { LazyExoticComponent, ComponentType } from "react";
|
|
|
|
export type LazyOrNot<Component extends ComponentType<any>> =
|
|
| LazyExoticComponent<Component>
|
|
| Component;
|