1
0
Fork 0
mirror of synced 2024-07-16 11:45:47 +12:00

Linting and build issues.

This commit is contained in:
mike12345567 2024-05-15 12:00:15 +01:00
parent aa51db20ee
commit 6b8d52def1
2 changed files with 1 additions and 3 deletions

View file

@ -22,8 +22,6 @@ import { checkAutoColumns } from "./utils"
import * as viewsSdk from "../../views"
import { getRowParams } from "../../../../db/utils"
import { quotas } from "@budibase/pro"
import env from "../../../../environment"
import { AttachmentCleanup } from "../../../../utilities/rowProcessor"
export async function save(
table: Table,

View file

@ -136,7 +136,7 @@ export interface Database {
opts?: { allowMissing?: boolean }
): Promise<T[]>
remove(idOrDoc: Document): Promise<Nano.DocumentDestroyResponse>
remove(idOrDoc: string, rev: string): Promise<Nano.DocumentDestroyResponse>
remove(idOrDoc: string, rev?: string): Promise<Nano.DocumentDestroyResponse>
put(
document: AnyDocument,
opts?: DatabasePutOpts