platform/dev/doc-import-tool/src/config.ts

18 lines
471 B
TypeScript
Raw Normal View History

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
}