0.0.6 • Published 2 years ago

@real-system/types-library v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Usage

# install peer dependencies

# npm
$ npm install react react-dom 
# yarn
$ yarn add react react-dom 

# install types

# npm
$ npm install @real-system/types-library
# yarn
$ yarn add @real-system/types-library

Code Example

import type { ValueOf } from '@real-system/types-library';

const obj = {
  keyOne: 'one',
  keyTwo: 'two,
}
type Values = ValueOf<typeof obj>;