Common types used across React Foundry.
npm install @react-foundry/typesReact Foundry - Types
=====================
Common types used across React Foundry.
Using this package
------------------
First install the package into your project:
``shell`
npm install -S -D @react-foundry/types
Then use it in your code as follows:
`js`
import type { UserInfo } from '@react-foundry/types';
Working on this package
-----------------------
Before working on this package you must install its dependencies using
the following command:
`shell`
pnpm install
Build the package by compiling the source code.
`shell`
npm run build
Remove any previously built files.
`shell``
npm run clean