diff options
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/schemas/responses/StickerPacksResponse.ts | 3 | ||||
-rw-r--r-- | src/util/schemas/responses/index.ts | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/util/schemas/responses/StickerPacksResponse.ts b/src/util/schemas/responses/StickerPacksResponse.ts new file mode 100644 index 00000000..4f382df0 --- /dev/null +++ b/src/util/schemas/responses/StickerPacksResponse.ts @@ -0,0 +1,3 @@ +import { StickerPack } from "../../entities"; + +export type StickerPacksResponse = StickerPack[]; diff --git a/src/util/schemas/responses/index.ts b/src/util/schemas/responses/index.ts index 1e4f30cb..3f29b779 100644 --- a/src/util/schemas/responses/index.ts +++ b/src/util/schemas/responses/index.ts @@ -36,6 +36,7 @@ export * from "./LimitsConfigurationResponse"; export * from "./LocationMetadataResponse"; export * from "./MemberJoinGuildResponse"; export * from "./OAuthAuthorizeResponse"; +export * from "./StickerPacksResponse"; export * from "./Tenor"; export * from "./TokenResponse"; export * from "./UserProfileResponse"; |