From 3c0ecefacc2147e4e2f4783f302a924f9005ef8e Mon Sep 17 00:00:00 2001 From: Simon Legner Date: Mon, 22 Jun 2020 17:04:33 +0200 Subject: [PATCH] fix(keycloak.d.ts): class cannot extend interface --- adapters/oidc/js/src/main/resources/keycloak.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adapters/oidc/js/src/main/resources/keycloak.d.ts b/adapters/oidc/js/src/main/resources/keycloak.d.ts index 2600ec0e8d9..e4dcb648f89 100644 --- a/adapters/oidc/js/src/main/resources/keycloak.d.ts +++ b/adapters/oidc/js/src/main/resources/keycloak.d.ts @@ -238,7 +238,7 @@ declare namespace Keycloak { type KeycloakPromiseCallback = (result: T) => void; - class KeycloakPromise extends Promise { + interface KeycloakPromise extends Promise { /** * Function to call if the promised action succeeds. *