@synerty/orb-vortexjs
Version:
Custom observable data serialisation and routing based on Angular2
7 lines (6 loc) • 315 B
TypeScript
export declare function now(): any;
export declare function logLong(message: string, start: any, payload?: any | null): void;
export declare abstract class PayloadDelegateABC {
abstract deflateAndEncode(payloadJson: string): Promise<string>;
abstract decodeAndInflate(vortexStr: string): Promise<string>;
}