UNPKG

safe-flow

Version:

A safer way to cancel or interrupt the await-async flow.

2 lines (1 loc) 84 B
export type RequiredPick<T, R extends keyof T> = Omit<T, R> & Required<Pick<T, R>>;