@real-system/types-library
v0.0.6
Published
Types library for real system.
Downloads
7
Readme
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-libraryCode Example
import type { ValueOf } from '@real-system/types-library';
const obj = {
keyOne: 'one',
keyTwo: 'two,
}
type Values = ValueOf<typeof obj>;