knowmax-quest-types
Version:
Contains type definitions for communicating with Knowmax Quest.
13 lines • 356 B
TypeScript
import type { IDocumentNode, IDocumentVersion } from ".";
export interface IReference {
id: number;
documentVersionId: number;
documentNodeId?: number;
type: string;
value: string;
domain: string;
count: number;
documentNode?: IDocumentNode;
documentVersion?: IDocumentVersion;
}
//# sourceMappingURL=IReference.d.ts.map