UNPKG

nats-micro

Version:

NATS micro compatible extra-lightweight microservice library

5 lines (3 loc) 133 B
export type MaybePromise<T> = T | PromiseLike<T>; export type PartialBy<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;