We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1124209 commit 05657a0Copy full SHA for 05657a0
src/client/client.ts
@@ -21,8 +21,6 @@ interface EventMap {
21
renewToken: () => void
22
}
23
24
-export type { JikeClientJSON }
25
-
26
const userSelfKey = Symbol('userSelfKey')
27
28
export class JikeClient extends EventEmitter<EventMap> {
src/client/index.ts
@@ -1,6 +1,7 @@
1
export * from './client'
2
export * from './user'
3
export * from './post'
4
+export type { JikeClientJSON } from './types'
5
export * as limit from './utils/limit'
6
export { RequestFailureError } from './errors/RequestFailureError'
7
export { AuthorizationError } from './errors/AuthorizationError'
0 commit comments