Files
turftracker/backend/node_modules/google-auth-library/build/src/crypto/crypto.d.ts
2026-04-09 13:19:47 -05:00

9 lines
281 B
TypeScript

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;