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.

11 lines (10 loc) 364 B
import { Installer } from './installer'; import { Configuration } from './interfaces'; import { MethodusProject } from '../ast/project'; export declare class Server { Installer: Installer; source?: MethodusProject; target?: MethodusProject; constructor(configuration: Configuration, source: string, target: string); publish(dest: any): void; }