Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/ts_essentials/lib/types.ts>WritableKeys

All basic TypeScript types in one place 🤙
Latest
type alias WritableKeys
import { type WritableKeys } from "https://deno.land/x/ts_essentials@v9.1.2/lib/types.ts";

Gets keys of an object which are writable

Type Parameters

T extends { }
definition: [P in keyof T]-?: IsFullyWritable<Pick<T, P>> extends true ? P : never[keyof T]