diff --git a/packages/skin-database/api/app.ts b/packages/skin-database/api/app.ts index 3e98b6c2..88deabca 100644 --- a/packages/skin-database/api/app.ts +++ b/packages/skin-database/api/app.ts @@ -18,7 +18,12 @@ export type ApiAction = | { type: "CLASSIC_SKIN_UPLOADED"; md5: string } | { type: "MODERN_SKIN_UPLOADED"; md5: string } | { type: "SKIN_UPLOAD_ERROR"; uploadId: string; message: string } - | { type: "GOT_FEEDBACK"; message: string; email?: string; url?: string } + | { + type: "GOT_FEEDBACK"; + message: string; + email?: string | null; + url?: string | null; + } | { type: "SYNCED_TO_ARCHIVE"; successes: number;