UNPKG

gil.js

Version:

A powerful Node.js library for interacting with the Guilded API.

13 lines 372 B
export type CreateCategoryBody = { /** The name of the category. */ name: string; /** The ID of the group where this category exists in. */ groupId?: string; }; export type UpdateCategoryBody = { /** The name of the category. */ name: string; /** The priority of the category. */ priority?: number; }; //# sourceMappingURL=category.d.ts.map