Files
keycloak_theme/src/tools/LazyOrNot.ts
2024-01-10 12:42:48 +01:00

4 lines
172 B
TypeScript

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