| 1 | import { DocProperties } from '@elog/types' |
| 2 | |
| 3 | export interface FeiShuConfig { |
| 4 | /** 知识库/我的空间 */ |
| 5 | type: 'wiki' | 'space' |
| 6 | /** 父文件夹token */ |
| 7 | folderToken?: string |
| 8 | /** 知识库 ID */ |
| 9 | wikiId?: string |
| 10 | appId: string |
| 11 | appSecret: string |
| 12 | baseUrl?: string |
| 13 | /** 是否禁用生成父级文档 */ |
| 14 | disableParentDoc?: boolean |
| 15 | /** 下载并发数 */ |
| 16 | limit?: number |
| 17 | } |
| 18 | |
| 19 | export interface FeiShuDoc { |
| 20 | id: string |
nothing calls this directly
no outgoing calls
no test coverage detected