Files
pyrofetes-frontend/node_modules/@sigstore/sign/dist/identity/ci.d.ts
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01:00

12 lines
394 B
TypeScript

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>;
}