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