UNPKG

@valapi/valorant-api.com

Version:

Valorant API - valorant-api.com

17 lines (16 loc) 507 B
import { ValorantApiComService } from "../client/ValorantApiComService"; import type { Response } from "../client/ValorantApiComService"; export declare namespace Objectives { /** * ! unknown from website */ interface Objectives { uuid: string; directive: string; assetPath: string; } } export declare class Objectives extends ValorantApiComService { get(): Response<Objectives.Objectives[]>; getByUuid(uuid: string): Response<Objectives.Objectives>; }