Updated the files.
This commit is contained in:
parent
1553e6b971
commit
753967d4f5
23418 changed files with 3784666 additions and 0 deletions
18
my-app/node_modules/@sigstore/bundle/dist/build.d.ts
generated
vendored
Executable file
18
my-app/node_modules/@sigstore/bundle/dist/build.d.ts
generated
vendored
Executable file
|
@ -0,0 +1,18 @@
|
|||
/// <reference types="node" />
|
||||
import type { BundleWithDsseEnvelope, BundleWithMessageSignature } from './bundle';
|
||||
type VerificationMaterialOptions = {
|
||||
certificate?: Buffer;
|
||||
keyHint?: string;
|
||||
};
|
||||
type MessageSignatureBundleOptions = {
|
||||
digest: Buffer;
|
||||
signature: Buffer;
|
||||
} & VerificationMaterialOptions;
|
||||
type DSSEBundleOptions = {
|
||||
artifact: Buffer;
|
||||
artifactType: string;
|
||||
signature: Buffer;
|
||||
} & VerificationMaterialOptions;
|
||||
export declare function toMessageSignatureBundle(options: MessageSignatureBundleOptions): BundleWithMessageSignature;
|
||||
export declare function toDSSEBundle(options: DSSEBundleOptions): BundleWithDsseEnvelope;
|
||||
export {};
|
Loading…
Add table
Add a link
Reference in a new issue