KeepT

Signature

export type KeepT<T, R> = {    [P in keyof T as T[P] extends R ? P : never]: T[P] extends R ? T[P] : never;};

Members

This export does not declare public properties or methods in the generated declaration file.