seyfert
Version:
The most advanced framework for discord bots
14 lines (13 loc) • 525 B
TypeScript
import type { RESTGetAPIStickerPack, RESTGetAPIStickerResult, RESTGetStickerPacksResult } from '../../types';
import type { RestArgumentsNoBody } from '../api';
export interface StickerRoutes {
stickers(id: string): {
get(args?: RestArgumentsNoBody): Promise<RESTGetAPIStickerResult>;
};
'sticker-packs': {
get(args?: RestArgumentsNoBody): Promise<RESTGetStickerPacksResult>;
(id: string): {
get(args?: RestArgumentsNoBody): Promise<RESTGetAPIStickerPack>;
};
};
}