UNPKG

@launchdarkly/js-server-sdk-common-edge

Version:
9 lines 421 B
import { Hmac as LDHmac } from '@launchdarkly/js-server-sdk-common'; import { SupportedHashAlgorithm, SupportedOutputEncoding } from './types'; export default class CryptoJSHmac implements LDHmac { private _cryptoJSHmac; constructor(algorithm: SupportedHashAlgorithm, key: string); digest(encoding: SupportedOutputEncoding): string; update(data: string): this; } //# sourceMappingURL=cryptoJSHmac.d.ts.map