We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1761e91 commit 12ec93dCopy full SHA for 12ec93d
packages/skin-database/api/app.ts
@@ -18,7 +18,12 @@ export type ApiAction =
18
| { type: "CLASSIC_SKIN_UPLOADED"; md5: string }
19
| { type: "MODERN_SKIN_UPLOADED"; md5: string }
20
| { type: "SKIN_UPLOAD_ERROR"; uploadId: string; message: string }
21
- | { type: "GOT_FEEDBACK"; message: string; email?: string; url?: string }
+ | {
22
+ type: "GOT_FEEDBACK";
23
+ message: string;
24
+ email?: string | null;
25
+ url?: string | null;
26
+ }
27
| {
28
type: "SYNCED_TO_ARCHIVE";
29
successes: number;
0 commit comments