UNPKG

classy-pay-core

Version:

Shared tools used in ClassyPay-related projects

4 lines (3 loc) 264 B
export type HMACSigner = (method: string, path: string, contentType: string, body?: string | null) => string; export type HMACSignerFactory = (service: string, token: string, secret: string) => HMACSigner; export declare const CreateHMACSigner: HMACSignerFactory;