Sha256: b6499cbc07d15406bf9835be84e5007235d4694fd56fecf634d53672bce340d2
Contents?: true
Size: 522 Bytes
Versions: 33
Compression:
Stored size: 522 Bytes
Contents
/// <reference types="node" /> import type { FetchOptions } from '../../types/fetch'; export interface CA { createSigningCertificate: (identityToken: string, publicKey: string, challenge: Buffer) => Promise<string[]>; } export type CAClientOptions = { fulcioBaseURL: string; } & FetchOptions; export declare class CAClient implements CA { private fulcio; constructor(options: CAClientOptions); createSigningCertificate(identityToken: string, publicKey: string, challenge: Buffer): Promise<string[]>; }
Version data entries
33 entries across 33 versions & 1 rubygems