UNPKG

@cutls/megalodon

Version:

Mastodon, Pleroma, Misskey API client for node.js and browser

54 lines (53 loc) 2.19 kB
import * as app from './entities/app.js'; import * as blocking from './entities/blocking.js'; import * as createdNote from './entities/createdNote.js'; import * as emoji from './entities/emoji.js'; import * as favorite from './entities/favorite.js'; import * as file from './entities/file.js'; import * as follower from './entities/follower.js'; import * as following from './entities/following.js'; import * as followRequest from './entities/followRequest.js'; import * as hashtag from './entities/hashtag.js'; import * as list from './entities/list.js'; import * as meta from './entities/meta.js'; import * as mute from './entities/mute.js'; import * as note from './entities/note.js'; import * as notification from './entities/notification.js'; import * as poll from './entities/poll.js'; import * as reaction from './entities/reaction.js'; import * as relation from './entities/relation.js'; import * as user from './entities/user.js'; import * as userDetail from './entities/userDetail.js'; import * as userkey from './entities/userkey.js'; import * as session from './entities/session.js'; import * as stats from './entities/stats.js'; export declare namespace Entity { type App = app.App; type Blocking = blocking.Blocking; type CreatedNote = createdNote.CreatedNote; type Emoji = emoji.Emoji; type EmojiKeyValue = emoji.EmojiKeyValue; type Favorite = favorite.Favorite; type File = file.File; type Follower = follower.Follower; type Following = following.Following; type FollowRequest = followRequest.FollowRequest; type Hashtag = hashtag.Hashtag; type List = list.List; type Antenna = list.Antenna; type Meta = meta.Meta; type Mute = mute.Mute; type Note = note.Note; type Notification = notification.Notification; type NotificationType = notification.NotificationType; type Poll = poll.Poll; type Choice = poll.Choice; type Reaction = reaction.Reaction; type Relation = relation.Relation; type User = user.User; type UserDetail = userDetail.UserDetail; type UserKey = userkey.UserKey; type Session = session.Session; type Stats = stats.Stats; } export default Entity;