docs(updater): Link to website in Usage section

closes #1133

Committed via a GitHub action: https://github.com/tauri-apps/plugins-workspace/actions/runs/12120811046

Co-authored-by: FabianLars <FabianLars@users.noreply.github.com>
This commit is contained in:
Fabian-Lars
2024-12-02 13:59:58 +00:00
committed by tauri-bot
parent c6427e6260
commit 9d8f7f7ffa
2 changed files with 4 additions and 4 deletions

4
dist-js/index.d.ts vendored
View File

@@ -4,12 +4,12 @@ export interface QueryResult {
/**
* The last inserted `id`.
*
* This value is always `0` when using the Postgres driver. If the
* This value is not set for Postgres databases. If the
* last inserted id is required on Postgres, the `select` function
* must be used, with a `RETURNING` clause
* (`INSERT INTO todos (title) VALUES ($1) RETURNING id`).
*/
lastInsertId: number;
lastInsertId?: number;
}
/**
* **Database**

View File

@@ -10,12 +10,12 @@ export interface QueryResult {
/**
* The last inserted `id`.
*
* This value is always `0` when using the Postgres driver. If the
* This value is not set for Postgres databases. If the
* last inserted id is required on Postgres, the `select` function
* must be used, with a `RETURNING` clause
* (`INSERT INTO todos (title) VALUES ($1) RETURNING id`).
*/
lastInsertId: number
lastInsertId?: number
}
/**