Skip to content

Collection of typescript utility types that extends the official utility types.

License

Notifications You must be signed in to change notification settings

wzc520pyfm/utype

Repository files navigation

🦄 Usage

import type { Mutable } from '@utype/core'

type Props = { readonly name: string; }

// Expect: { name: string }
type MutableProp = Mutable<Prop>

📦 Install

npm i @utype/core

🥰 Contributors