UNPKG

declarations

Version:

[![npm version](https://badge.fury.io/js/declarations.svg)](https://www.npmjs.com/package/declarations)

33 lines (28 loc) 908 B
// Type definitions for microgears v4.0.0 // Project: http://github.com/marcusdb/microgears // Definitions by: Marcus David Bronstein <https://github.com/marcusdb> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare namespace microgears { export interface Service { name: string; async?: boolean; pathname?: string; namespace: string; } interface MetaInformation { serviceName: string; methodName: string; serviceNameSpace: string; extra: any; } interface Plugin { name: string; beforeChain(arguments: Array<any>, metaInfo: MetaInformation): Array<any>; afterChain<T>(result: T, metaInfo: MetaInformation): T; } function addService(service: Service): Service; function addPlugin(plugin: Plugin): void; } declare module "microgears" { export = microgears; }