osu-api-extended
Version:
Advanced osu! api wrapper for v1 and v2, with extra stuff
18 lines (17 loc) • 486 B
TypeScript
import { IDefaultParams } from "../../types";
type params = ({
type: 'mark_as_read';
identities?: {
category?: string;
object_id?: string;
object_type?: string;
}[];
notifications?: {
category?: string;
id?: number;
object_id?: string;
object_type?: string;
}[];
});
export declare const notification_actions: <T extends params>(params: T, addons?: IDefaultParams) => Promise<any>;
export {};