UNPKG

@mrmory/bggclient

Version:

Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient

13 lines (10 loc) 358 B
import { JsonClassType, JsonIgnoreProperties, JsonProperty } from "jackson-js"; @JsonIgnoreProperties({ value: ['@_termsofuse', 'mebers', 'location'] }) export class BggGuildMemberDto { @JsonProperty() @JsonClassType({ type: () => [String] }) name!: string; @JsonProperty() @JsonClassType({ type: () => [String] }) date!: string; }