Type Alias DucExternalFile

DucExternalFile: {
    activeRevisionId: string;
    id: ExternalFileId;
    revisions: Record<string, ExternalFileRevisionMeta>;
    updated: number;
    version?: number;
}

Type declaration

  • activeRevisionId: string
  • id: ExternalFileId
  • revisions: Record<string, ExternalFileRevisionMeta>

    All revisions of this file, keyed by their id (metadata only, no data blobs).

  • updated: number

    Epoch ms when the logical file was last mutated (revision added or active changed).

  • Optionalversion?: number