monday.com API types
npm install @mondaydotcomorg/api-typesbash
npm install --save-dev @mondaydotcomorg/api-types
`Usage
The package exports all the types used by the SDK, so you can use them in your code.`typescript
import type { User } from '@mondaydotcomorg/api-types';const user: User = {
id: '123',
name: 'John Doe',
email: 'john.doe@someorg.com'
}
``