1 files changed, 1 insertions, 12 deletions
diff --git a/src/util/entities/Sticker.ts b/src/util/entities/Sticker.ts
index 4c950cbb..07fc8d37 100644
--- a/src/util/entities/Sticker.ts
+++ b/src/util/entities/Sticker.ts
@@ -20,18 +20,7 @@ import { Column, Entity, JoinColumn, ManyToOne, RelationId } from "typeorm";
import { BaseClass } from "./BaseClass";
import { Guild } from "./Guild";
import { User } from "./User";
-
-export enum StickerType {
- STANDARD = 1,
- GUILD = 2,
-}
-
-export enum StickerFormatType {
- GIF = 0, // gif is a custom format type and not in discord spec
- PNG = 1,
- APNG = 2,
- LOTTIE = 3,
-}
+import { StickerFormatType, StickerType } from "@spacebar/schemas";
@Entity({
name: "stickers",
|