@modern-kit/types
v2.1.0
Published
modern-kit/types
Downloads
163
Maintainers
Readme
@modern-kit/types
클라이언트 개발에 유용한 타입스크립트 유틸 타입들을 제공합니다.
Documentation
@modern-kit의 공식 문서는 아래 웹사이트에서 확인하실 수 있습니다
- https://modern-agile-team.github.io/modern-kit
Download
npm i -D @modern-kit/typesyarn add -D @modern-kit/typespnpm i -D @modern-kit/typesUsage
import { Merge } from '@modern-kit/types';
type A = { a: string, b: number }
type B = { b: string, c: boolean }
type Result = Merge<A, B>
// { a: string, b: string, c: boolean }License
MIT © Modern Agile. See LICENSE for details.
