Merge pull request #5843 from FinnStutzenstein/fixActionInterface

Fix action interface
This commit is contained in:
Finn Stutzenstein 2021-02-03 10:02:07 +01:00 committed by GitHub
commit 728cbdb719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {