UNPKG

froge

Version:

Jump-start your NodeJS/Bun/... services with dependency & lifecycle management and handy helper methods

6 lines (5 loc) 139 B
export type Plug<T> = (() => T) & { isFrogePlug: true; isReady: boolean; }; export declare function plug<T>(key: string): Plug<T>;