Skip to content

Commit

Permalink
fix: fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondYuan committed Jul 4, 2023
1 parent e8786ff commit a3caad8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/common/backend/services/webdav/service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { WebDAVServiceConfig } from './interface';
import { DocumentService, CreateDocumentRequest, Repository } from './../interface';
import { FileStat, WebDAVClient, createClient } from 'webdav/web';
//@ts-ignore
//@TODO use webdav/web
import { FileStat, WebDAVClient, createClient } from 'webdav/dist/web';

export default class WebDAVDocumentService implements DocumentService {
private auth: string;
Expand Down

0 comments on commit a3caad8

Please sign in to comment.