Files
discordeno/packages/rest/src/index.ts
ITOH fd357aeace refactor(rest)!: move routes to their own creator function (#2950)
Currently the route definitions make `createRestManager` massive. Moving them to their own creator function makes it a bit easier to handle.

Also `sessionInfo` has been removed since it's just an alias to `gatewayBot`. Instead `gatewayBot` should be used.
It has been removed since the routes are mainly used internally in the lib. Almost no one should need to touch them outside, but if they do they should know how routes are called.
2023-04-02 21:04:33 +00:00

7 lines
182 B
TypeScript

export * from './typings/routes.js'
export * from './invalidBucket.js'
export * from './manager.js'
export * from './queue.js'
export * from './routes.js'
export * from './types.js'