mirror of
https://github.com/tiramisulabs/seyfert.git
synced 2025-07-03 13:36:08 +00:00
13 lines
462 B
TypeScript
13 lines
462 B
TypeScript
import type { RESTGetAPIStickerResult, RESTGetStickerPacksResult } from '../../types';
|
|
import type { ProxyRequestMethod } from '../Router';
|
|
import type { RestArguments } from '../api';
|
|
|
|
export interface StickerRoutes {
|
|
stickers(id: string): {
|
|
get(args?: RestArguments<ProxyRequestMethod.Get>): Promise<RESTGetAPIStickerResult>;
|
|
};
|
|
'sticker-packs': {
|
|
get(args?: RestArguments<ProxyRequestMethod.Get>): Promise<RESTGetStickerPacksResult>;
|
|
};
|
|
}
|