mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 02:15:01 +00:00
Fix typing of GOT_FEEDBACK action
This commit is contained in:
parent
1761e9101f
commit
12ec93d2d2
1 changed files with 6 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue