@meibot/unofficial-valorant-api
Version:
Library for the Unofficial VALORANT API by api.henrikdev.xyz
21 lines (20 loc) • 473 B
TypeScript
export interface Item {
uuid: string;
name: string;
image: string;
type: string;
amount: number;
discount_percent: number;
base_price: number;
discounted_price: number;
promo_item: boolean;
}
export interface FeaturedItems {
bundle_uuid: string;
items: Item[];
seconds_remaining: number;
expires_at: string;
bundle_price: number;
whole_sale_only: boolean;
}
export type V1StoreFeaturedResponse = FeaturedItems[];