tsoa-custom-decorators
Version:
Build swagger-compliant REST APIs using TypeScript and Node
20 lines (15 loc) • 394 B
text/typescript
export function Get(value?: string): any {
return () => { return; };
}
export function Post(value?: string): any {
return () => { return; };
}
export function Patch(value?: string): any {
return () => { return; };
}
export function Put(value?: string): any {
return () => { return; };
}
export function Delete(value?: string): any {
return () => { return; };
}