@mondaydotcomorg/api-types
v5.0.0
Published
monday.com API types
Downloads
671
Maintainers
Readme
Monday GraphQL TS Types
This SDK provides you with all the types needed to interact with monday.com's GraphQL API. The SDK is supported in both Node.js and browser environments
Installation
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.
import type { User } from '@mondaydotcomorg/api-types';
const user: User = {
id: '123',
name: 'John Doe',
email: '[email protected]'
}