mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-23 08:15:19 +00:00
18 lines
471 B
TypeScript
18 lines
471 B
TypeScript
import { Employee } from '@hcengineering/contact'
|
|
import { Ref, WorkspaceId } from '@hcengineering/core'
|
|
import { DocumentSpace } from '@hcengineering/controlled-documents'
|
|
|
|
import { HtmlConversionBackend } from './convert/convert'
|
|
|
|
export interface Config {
|
|
doc: string
|
|
token: string
|
|
collaboratorApiURL: string
|
|
uploadURL: string
|
|
workspaceId: WorkspaceId
|
|
owner: Ref<Employee>
|
|
backend: HtmlConversionBackend
|
|
space: Ref<DocumentSpace>
|
|
specFile?: string
|
|
}
|