justreddit
Version:
A simple package for getting random posts, random images, random SubReddits, and SubReddit info.
10 lines (9 loc) • 391 B
TypeScript
import { subreddit, randomSubreddit } from "./Subreddit";
import { post, randomPost } from "./Post";
import { reply } from "./Reply";
import { user } from "./User";
export { subreddit, randomSubreddit, post, randomPost, reply, user };
export type { Subreddit } from "./Subreddit";
export type { Post } from "./Post";
export type { Reply } from "./Reply";
export type { User } from "./User";