diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-05-23 19:57:07 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-06-12 21:11:16 -0400 |
| commit | 3198f34d4b487372703eaea09238c5ae9c1a9982 (patch) | |
| tree | 0a19a929c28f412b456bc8c685f7dbcbca54b365 | |
| parent | correctly separate production / development dependencies (diff) | |
| download | sharkey-3198f34d4b487372703eaea09238c5ae9c1a9982.tar.gz sharkey-3198f34d4b487372703eaea09238c5ae9c1a9982.tar.bz2 sharkey-3198f34d4b487372703eaea09238c5ae9c1a9982.zip | |
fix TS errors in megalodon
| -rw-r--r-- | packages/megalodon/src/index.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/megalodon/src/index.ts b/packages/megalodon/src/index.ts index bacd0574d4..8971803392 100644 --- a/packages/megalodon/src/index.ts +++ b/packages/megalodon/src/index.ts @@ -12,17 +12,17 @@ import MastodonEntity from './mastodon/entity'; import MisskeyEntity from './misskey/entity'; export { - Response, + type Response, OAuth, RequestCanceledError, isCancel, detector, - MegalodonInterface, + type MegalodonInterface, NotificationType, FilterContext, Misskey, - Entity, + type Entity, Converter, - MastodonEntity, - MisskeyEntity, + type MastodonEntity, + type MisskeyEntity, } |