mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-17 04:13:28 +00:00
28 lines
805 B
TypeScript
28 lines
805 B
TypeScript
export * from './application_command';
|
|
export * from './auto_moderation';
|
|
export * from './channel';
|
|
export * from './custom';
|
|
export * from './dispatch';
|
|
export * from './entitlement';
|
|
export * from './guild';
|
|
export * from './integration';
|
|
export * from './interactions';
|
|
export * from './invite';
|
|
export * from './message';
|
|
export * from './presence';
|
|
export * from './soundboard';
|
|
export * from './stage';
|
|
export * from './subscriptions';
|
|
export * from './thread';
|
|
export * from './typing';
|
|
export * from './user';
|
|
export * from './voice';
|
|
export * from './webhook';
|
|
|
|
import type { CamelCase } from '../../common';
|
|
import type * as RawEvents from './index';
|
|
|
|
export type ClientEvents = {
|
|
[X in keyof typeof RawEvents as CamelCase<X>]: ReturnType<(typeof RawEvents)[X]>;
|
|
};
|