UNPKG

knowmax-quest-types

Version:

Contains type definitions for communicating with Knowmax Quest.

11 lines 531 B
import type { IMetadataForQuestId } from "."; /** Metadata for a collection of nodes within a document version. */ export interface IMetadataForNodes { /** Identification of document to which these nodes belong. Without version specification. */ questId: string; /** Version number of document version to which these nodes belong. */ version: number; /** All hierarchically child nodes of document node specified by questId. */ nodes: IMetadataForQuestId[]; } //# sourceMappingURL=IMetadataForNodes.d.ts.map