semantic-network
Version:
A utility library for manipulating a list of links that form a semantic interface to a network of resources.
11 lines (10 loc) • 351 B
TypeScript
import { get } from './representation/get';
import { create } from './representation/create';
import { update } from './representation/update';
import { del } from './representation/delete';
export declare class ApiUtil {
static get: typeof get;
static create: typeof create;
static update: typeof update;
static delete: typeof del;
}