trender-client
Version:
Official Trender client API
9 lines (8 loc) • 398 B
TypeScript
import RequestEmitter, { requestParams } from "../utils/RequestEmitter";
import type { paginationParams } from "./Interfaces/Global";
import type { postResponse } from "./Interfaces/Post";
declare class PostUserManager extends RequestEmitter {
constructor(params: requestParams);
fetch(nickname: string, options?: paginationParams): Promise<postResponse>;
}
export default PostUserManager;