Remove any from couchdb.get response

This commit is contained in:
Adria Navarro 2023-07-18 10:48:55 +02:00
parent 1fbff5c6ef
commit c4c62e5c6f
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ export interface Database {
exists(): Promise<boolean>
checkSetup(): Promise<Nano.DocumentScope<any>>
get<T>(id?: string): Promise<T | any>
get<T>(id?: string): Promise<T>
remove(
id: string | Document,
rev?: string