From 74a030ab4351fccc5c3ff28f7a6d4d51e368521a Mon Sep 17 00:00:00 2001 From: Manuel Spagnolo Date: Tue, 15 Jun 2021 11:44:25 +0200 Subject: [PATCH] fix: use correct typings in waitUntilAssetProcessed (#792) --- lib/types/space.types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/types/space.types.ts b/lib/types/space.types.ts index 53a896820c..87fa245da6 100644 --- a/lib/types/space.types.ts +++ b/lib/types/space.types.ts @@ -91,7 +91,7 @@ export interface SpaceAPI { query?: Query ) => Promise> createUpload: (base64data: string) => Promise - waitUntilAssetProcessed: (assetId: string, locale: string) => Promise + waitUntilAssetProcessed: (assetId: string, locale: string) => Promise /** Returns all users who belong to the space. */ getUsers: () => Promise>