Update API docs

Signed-off-by: Andy Caruso <macaruso@gmail.com>
This commit is contained in:
Andy Caruso
2022-03-22 09:15:46 -07:00
committed by blam
parent 504f5939ed
commit df7ea8e22f
+4 -7
View File
@@ -30,12 +30,9 @@ export function getBearerTokenFromAuthorizationHeader(
// @public
export class IdentityClient {
authenticate(token: string | undefined): Promise<BackstageIdentityResponse>;
static create(
options: {
discovery: PluginEndpointDiscovery;
issuer: string;
},
cooldownMs?: number,
): IdentityClient;
static create(options: {
discovery: PluginEndpointDiscovery;
issuer: string;
}): IdentityClient;
}
```