javascript-ampache
Version:
A JS library for the Ampache API
18 lines (17 loc) • 559 B
TypeScript
import { ShoutResponse } from "./types";
import { Base } from "../base";
export declare class Shouts extends Base {
/**
* This gets the latest posted shouts
* @remarks MINIMUM_API_VERSION=380001
* @param [params.username] Username to find
* @param [params.limit] Maximum number of results to return
* @see {@link https://ampache.org/api/api-json-methods#last_shouts}
*/
last_shouts(params?: {
username?: string;
limit?: number;
}): Promise<{
shout: ShoutResponse[];
}>;
}