UNPKG

@fbltd/async

Version:

Miscellaneous async utils

8 lines (7 loc) 221 B
import { Dependency } from "../dependency.js"; export type IDepObjectArgument = { [key: string]: Dependency; }; export type IDepObjectReturn<T extends IDepObjectArgument> = { [Key in keyof T]: T[Key]['value']; };