twilly
Version:
Node.js Twilio API abstraction layer for Express applications
13 lines (12 loc) • 475 B
TypeScript
import Flow from '../Flows/Flow';
export declare function getSha256Hash(secret: string, key: string): string;
export declare function uniqueString(): string;
export declare function randomFlow(): Flow;
declare type AnyFunc = (...args: any[]) => any;
export declare function compose(...fns: AnyFunc[]): AnyFunc;
export declare function randInt(): number;
/**
* Create a static deep copy of a serealizable object
*/
export declare function deepCopy<T>(obj: T): T;
export {};