UNPKG

pinusmod

Version:

[![Build Status](https://travis-ci.org/node-pinus/pinus.svg?branch=master)](https://travis-ci.org/node-pinus/pinus)

16 lines (14 loc) 210 B
/** * master server info */ export interface MasterInfo { id: string; host: string; port: number; } /** * Represents some Type of the Object. */ export type ObjectType<T> = { new (): T; };