Comparing version 1.0.3 to 1.0.4
import { Controller } from "./model/Controller"; | ||
import { IControllerOptions } from "./model/IControllerOptions"; | ||
declare function HttpDispatchHandling(target: any, methodName: string, descriptor: PropertyDescriptor): PropertyDescriptor; | ||
declare function HttpDispatchDownload(target: any, methodName: string, descriptor: PropertyDescriptor): PropertyDescriptor; | ||
export { Controller, HttpDispatchHandling, HttpDispatchDownload }; | ||
export { Controller, IControllerOptions, HttpDispatchHandling, HttpDispatchDownload }; |
import { Router } from "express"; | ||
import { ControllerOptions } from "./IControllerOptions"; | ||
import { IControllerOptions } from "./IControllerOptions"; | ||
export declare abstract class Controller { | ||
routers: Router; | ||
protected options: ControllerOptions; | ||
constructor(_options: ControllerOptions); | ||
protected options: IControllerOptions; | ||
constructor(_options: IControllerOptions); | ||
} |
@@ -1,2 +0,2 @@ | ||
export interface ControllerOptions { | ||
export interface IControllerOptions { | ||
uri: string; | ||
@@ -3,0 +3,0 @@ basePath: string; |
{ | ||
"name": "c2-http", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Biblioteca Typescript para API NodeJS", | ||
@@ -5,0 +5,0 @@ "repository": "https://cabralsilva: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@github.com/cabralsilva/c2-http.git", |
9073
188