UNPKG

semantic-network

Version:

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

8 lines (7 loc) 273 B
import { Document, Representation } from '../../types/types'; import { SyncOptions } from './syncOptions'; export interface SyncResult<T extends Representation, U extends Document> { readonly resource: T; readonly document: U; readonly options?: SyncOptions; }