UNPKG

google-auth-library

Version:
9 lines (8 loc) 281 B
import { Crypto } from './shared'; export * from './shared'; export interface CryptoSigner { update(data: string): void; sign(key: string, outputFormat: string): string; } export declare function createCrypto(): Crypto; export declare function hasBrowserCrypto(): boolean;