| 1234567891011121314151617181920212223242526272829303132333435 |
- export type CompileOutputFile = {
- path: string
- url: string
- type: string
- build: string
- ranges?: {
- start: number
- end: number
- hash: string
- objectId: string
- }[]
- contentId?: string
- size?: number
- // assigned by buildFileList in frontend
- main?: boolean
- }
- export type CompileResponseData = {
- fromCache?: boolean
- status: string
- outputFiles: CompileOutputFile[]
- compileGroup?: string
- clsiServerId?: string
- pdfDownloadDomain?: string
- pdfCachingMinChunkSize: number
- validationProblems: any
- stats: any
- timings: any
- outputFilesArchive?: CompileOutputFile
- // assigned on response body by DocumentCompiler in frontend
- rootDocId?: string
- options: any
- }
|