UNPKG

@methodus/contracts

Version:

This package is part of the Methodus tollbelt. It's purpose is generating contract packages of the server code, to be used by JavaScript browser / server clients.

18 lines 503 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BuildOptions = exports.HEADER = void 0; exports.HEADER = ` // Methodus contract. // Generated at: ${new Date()} `; class BuildOptions { constructor(isClient, publish, isMocked) { this.target = ''; this.source = ''; this.isClient = isClient; this.publish = publish; this.isMocked = isMocked; } } exports.BuildOptions = BuildOptions; //# sourceMappingURL=interfaces.js.map