UNPKG

@anglr/rest

Version:

Angular module representing rest services

13 lines 296 B
/** * Set the base URL of REST resource * @param url - base URL */ export function BaseUrl(url) { return function (Target) { Target.prototype.getBaseUrl = function () { return url; }; return Target; }; } //# sourceMappingURL=baseUrl.decorator.js.map