UNPKG

@awo00/smb2

Version:

A SMB2 implementation in TypeScript

13 lines (12 loc) 263 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Response { header; body; request; constructor(header = {}, body = {}) { this.header = header; this.body = body; } } exports.default = Response;