@meibot/unofficial-valorant-api
Version:
Library for the Unofficial VALORANT API by api.henrikdev.xyz
18 lines (17 loc) • 366 B
TypeScript
export interface Post {
banner_url: string;
category: string;
date: Date;
external_link: string;
title: string;
url: string;
}
export interface Announcement {
banner_url: string;
category: string;
date: Date;
external_link?: string | null;
title: string;
url: string;
}
export type V1WebsiteResponse = Announcement[];