UNPKG

semantic-network

Version:

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

9 lines (8 loc) 221 B
import { Representation } from '../../types/types'; import { UriList } from '../../types/mediaTypes'; /** * A resolver on {@link UriList} */ export interface UriListResolver { (resource: Representation): UriList; }