osu-api-extended
Version:
Advanced osu! api wrapper cover all V2 and V1 endpoints, and provide useful tools
9 lines (8 loc) • 352 B
TypeScript
import { IDefaultParams, IError } from "../../types";
import { NotificationsListResponse } from "../../types/v2/notifications_list";
type Response = NotificationsListResponse & IError;
export declare const notifications_list: (params: {
max_id: string;
unread_only: boolean;
}, addons?: IDefaultParams) => Promise<Response>;
export {};