An open API service indexing awesome lists of open source software.

https://github.com/Dinographic/GuildedAPI-Types

Up to date Guilded API Typings.
https://github.com/Dinographic/GuildedAPI-Types

api guilded guilded-api node typescript

Last synced: 4 months ago
JSON representation

Up to date Guilded API Typings.

Awesome Lists containing this project

README

          

# Guilded API Types
## Every type definitions for the [Guilded API](https://www.guilded.gg/docs/api/).








# Installation
```bash
npm install guildedapi-types.ts
```

# Get started
To import the API Types, you need to choose the API version. E.g: `guildedapi-types.ts/v1`

You can import every types or some, E.g:
```typescript
import * as APITypes from 'guildedapi-types.ts/v1'
```

```typescript
import { APIGuild } from 'guildedapi-types.ts/v1'
```

To use most of types, you'll need Typescript.
Here's an example:
```typescript
const GuildCategory: APIGuildCategories = 'community';
```

# Who's using those types?
- TouchGuild (Guilded Library)

### When modifications are needed, feel free to make PRs.

# Links
- [GitHub](https://github.com/DinographicPixels/GuildedAPI-Types)
- [NPM](https://www.npmjs.com/package/guildedapi-types.ts)
- [Guilded API Documentation](https://www.guilded.gg/docs/api/)