Files
AnthoLume/frontend/src/generated/model/documentResponse.ts
2026-03-22 17:21:33 -04:00

15 lines
343 B
TypeScript

/**
* Generated by orval v8.5.3 🍺
* Do not edit manually.
* AnthoLume API v1
* REST API for AnthoLume document management system
* OpenAPI spec version: 1.0.0
*/
import type { Document } from './document';
import type { Progress } from './progress';
export interface DocumentResponse {
document: Document;
progress?: Progress;
}