UNPKG

ngx-resource-core

Version:

Core of resource library - Forked and modified

13 lines (8 loc) 242 B
import { IResourceParams } from './Declarations'; export function ResourceParams(params: IResourceParams = {}) { return function (target: any) { target.prototype.getResourceOptions = function () { return params; }; }; }