1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

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

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