Tag: typescript pouchdb typescript

在我的项目中不能导入PouchDB

我正在从事一个项目,最近PouchDB决定停止工作。 我不能在我的ts项目中编译它。 我试过了: import * as PouchDB from 'pouchdb'; export default PouchDB.defaults({ prefix: `http://admin:password@localhost:5984/` }) 但是我明白了 server/src/database.ts(3,24): error TS2339: Property 'defaults' does not exist on type 'typeof 'pouchdb''. 如果我尝试: import {PouchDB} from 'pouchdb'; export default PouchDB.defaults({ prefix: `http://admin:password@localhost:5984/` } as any) 我明白了 server/src/database.ts(1,9): error TS2305: Module ''pouchdb'' has no exported member 'PouchDB'. 如果我尝试: import PouchDB […]