UNPKG

@znode/sign

Version:
9 lines (8 loc) 219 B
export interface IData { method: 'GET' | 'POST' | string; path: string; body?: object | null; timestamp: number; } export declare function sign(data: IData, secret: string): string; export default sign;