UNPKG

semantic-network

Version:

A utility library for manipulating a list of links that form a semantic interface to a network of resources.

11 lines 342 B
import { get } from './representation/get'; import { create } from './representation/create'; import { update } from './representation/update'; import { del } from './representation/delete'; export class ApiUtil { } ApiUtil.get = get; ApiUtil.create = create; ApiUtil.update = update; ApiUtil.delete = del; //# sourceMappingURL=apiUtil.js.map