NET-Web-API-w-Angular/my-app/node_modules/@sigstore/sign/dist/identity/ci.d.ts

12 lines
394 B
TypeScript
Raw Normal View History

2024-02-09 00:38:41 +00:00
import type { IdentityProvider } from './provider';
/**
* CIContextProvider is a composite identity provider which will iterate
* over all of the CI-specific providers and return the token from the first
* one that resolves.
*/
export declare class CIContextProvider implements IdentityProvider {
private audience;
constructor(audience?: string);
getToken(): Promise<string>;
}