UNPKG

semantic-network

Version:

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

7 lines (6 loc) 337 B
import { DocumentRepresentation } from './document'; import { FormRepresentation } from './formRepresentation'; import { MergeOptions } from './mergeOptions'; export type CreateFormMergeStrategy = { (document: DocumentRepresentation, form: FormRepresentation, options?: MergeOptions): Promise<DocumentRepresentation | undefined>; };