(target: Class, propertyKey?: string)
| 41 | * @returns {(string|undefined)} - The path or undefined if none was defined. |
| 42 | */ |
| 43 | export function getPath(target: Class, propertyKey?: string): string|undefined { |
| 44 | return getMetadata('path', target, propertyKey); |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Join several HTTP request paths together. |