UNPKG

knowmax-quest-types

Version:

Contains type definitions for communicating with Knowmax Quest.

22 lines 758 B
import type { IDocumentVersion } from "."; export interface IResource { /** Internal identification. */ id: number; /** Internal id of document version to which resource belongs. */ documentVersionId: number; /** Name of resource. */ name: string; /** Url to data for this resource. */ url: string; /** Title of this resource. */ title: string; /** Size in bytes of this resource. */ size: number; /** MIME type which describes data associated with this resource. */ mimeType: string; /** Optional group identification to which resource belongs. */ group?: string; /** Document version info. If requested. */ documentVersion?: IDocumentVersion; } //# sourceMappingURL=IResource.d.ts.map