UNPKG

tgrid

Version:

Grid Computing Framework for TypeScript

8 lines (7 loc) 218 B
import { SpecialFields } from "./SpecialFields"; /** * Omit never typed member. * * @author Jeongho Nam - https://github.com/samchon */ export type RemoveNever<T extends object> = Omit<T, SpecialFields<T, never>>;