UNPKG

169 BTypeScriptView Raw
1import { ReadonlyKeys } from "../readonly-keys";
2export type WritableKeys<Type extends object> = Type extends unknown ? Exclude<keyof Type, ReadonlyKeys<Type>> : never;