Fix action interface

This commit is contained in:
Finn Stutzenstein 2021-02-03 10:00:53 +01:00
parent 7502569211
commit 7f125165a3
No known key found for this signature in database
GPG Key ID: 9042F605C6324654
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ interace ActionsResponse {
*
* To report errors, use the ActionError format!
**/
results: ((object | ActionError | null)[] | null )[]
results: ((object | null)[] | null )[] | ActionError
}
interface ActionError {