typealias _Pick

external
export type _Pick<T, K> = Pick<T, Extract<keyof T, K>>;

Type Parameters

T

K

Pick<T, Extract<keyof T, K>>