interface ModuleOptions { /** anki connect 的地址 */ ankiServiceUrl?: string; /** 要转换的文件夹路径 */ dirPath: string; /** 根分组名 */ rootDeckName: string; } export default class Index { conf: ModuleOptions; constructor(options?: ModuleOptions); start(): Promise; } export {};