UNPKG

154 BTypeScriptView Raw
1import { OptionalKeys } from "../optional-keys";
2export type RequiredKeys<Type> = Type extends unknown ? Exclude<keyof Type, OptionalKeys<Type>> : never;