mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-25 16:42:34 +00:00
fix(keycloak.d.ts): class cannot extend interface
This commit is contained in:
committed by
Stan Silvert
parent
55291bad76
commit
3c0ecefacc
@@ -238,7 +238,7 @@ declare namespace Keycloak {
|
||||
|
||||
type KeycloakPromiseCallback<T> = (result: T) => void;
|
||||
|
||||
class KeycloakPromise<TSuccess, TError> extends Promise<TSuccess> {
|
||||
interface KeycloakPromise<TSuccess, TError> extends Promise<TSuccess> {
|
||||
/**
|
||||
* Function to call if the promised action succeeds.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user