UNPKG

@jay-js/system

Version:

A powerful and flexible TypeScript library for UI, state management, lazy loading, routing and managing draggable elements in modern web applications.

14 lines (13 loc) 258 B
export interface IImportedModule { module: any; lastUsed: number; collect: boolean; } export interface ILazyModule { module: string; import: () => Promise<any>; style?: any; props?: any; collect?: boolean; loader?: any; }