weverse
Version:
Wrapper for weverse private API
19 lines (18 loc) • 749 B
TypeScript
export declare class WeverseUrl {
static base: string;
private static _login;
private static _checkToken;
private static _communities;
private static _allNotifications;
static get checkToken(): string;
static get communities(): string;
static get login(): string;
static get allNotifications(): string;
static notifications(from?: number): string;
static community(id: number): string;
static communityPosts(id: number): string;
static communityPostsPages(id: number, from?: number): string;
static postDetails(postId: number, communityId: number): string;
static postComments(postId: number, communityId: number): string;
static media(communityId: number, mediaId: number): string;
}