UNPKG

nats-micro

Version:

NATS micro compatible extra-lightweight microservice library

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