UNPKG
guildwars2-ts
Version:
latest (1.7.0)
1.7.0
1.6.0
1.5.0
1.4.1
1.4.0
1.3.0
1.2.3
1.2.2
1.2.1
1.1.6
1.1.5
1.1.4
1.1.2
1.1.1
1.1.0
1.0.4
1.0.3
1.0.2
1.0.1
GuildWars 2 API Wrapper in Typescript
gitlab.com/dinckelman/guildwars2-ts
guildwars2-ts
/
dist
/
models
/
homestead
/
homestead.decorations.categories.dto.d.ts
11 lines
(10 loc)
•
290 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { z }
from
'zod'
;
/** * /v2/homestead/decorations/categories definition */
export
declare
const
HomesteadDecorationsCategoriesDTO
: z.ZodArray<z.ZodObject<{
/** The category's ID. */
id: z.ZodNumber;
/** The category name. */
name: z.ZodString; }, z.core.
$strict
>>;