semantic-network
Version:
A utility library for manipulating a list of links that form a semantic interface to a network of resources.
12 lines (11 loc) • 353 B
TypeScript
import { Representation } from '../../types/types';
import { SyncInfoAction } from './types';
/**
* Internal data structure for working out which action to perform on documents when syncing.
* @private
*/
export interface SyncInfo {
readonly resource: Representation;
readonly document: Representation;
readonly action: SyncInfoAction;
}