update api report

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-02-24 14:50:53 +01:00
parent a480f670c7
commit adb3447ca5
+2 -6
View File
@@ -566,9 +566,7 @@ export type OAuthRequester<TAuthResponse> = (
// @public
export type OAuthRequesterOptions<TOAuthResponse> = {
provider: Omit<AuthProviderInfo, 'id'> & {
id?: string;
};
provider: AuthProviderInfo;
onAuthRequest(scopes: Set<string>): Promise<TOAuthResponse>;
};
@@ -637,9 +635,7 @@ export type PathParams<S extends string> = {
// @public
export type PendingOAuthRequest = {
provider: Omit<AuthProviderInfo, 'id'> & {
id?: string;
};
provider: AuthProviderInfo;
reject(): void;
trigger(): Promise<void>;
};