UNPKG

@berish/rfp

Version:

Binary secure transport organization protocol for peer communication using function fingerprints

11 lines 539 B
/// <reference types="node" /> import { ISerberPlugin } from '@berish/serber'; import { BufferTypeEnum } from './helper'; import { IPrint, PrintTypeEnum } from '../abstract'; export declare type IBuffer = Buffer | ArrayBuffer | SharedArrayBuffer | Uint8Array | Uint16Array | Uint32Array; export interface IBufferPrint extends IPrint<PrintTypeEnum.printBuffer> { bufferType: BufferTypeEnum; data: Uint8Array; } export declare const bufferToBufferPrintPlugin: ISerberPlugin<IBuffer, IBuffer, {}>; //# sourceMappingURL=plugin.d.ts.map