UNPKG

@sigstore/cli

Version:
17 lines (16 loc) 384 B
interface CallbackServerOptions { port: number; hostname: string; } export declare class CallbackServer { private server; private sockets; private port; private hostname; callback: Promise<string> | undefined; constructor(options: CallbackServerOptions); start(): Promise<string>; shutdown(): Promise<void>; private serverURL; } export {};