Interface RepeatableContent

Represents a piece of repeatable content, such as dungeons or raids, completed by a player or class

interface RepeatableContent {
    completed: number;
    name: string;
}

Properties

Properties

completed: number

The amount the player or class completed the content

name: string

The name of content

Generated using TypeDoc