-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
// 各メソッドハンドラに渡されるコンテキストの定義。
//
// SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: AGPL-3.0-only
import { type IDBPDatabase } from "idb";
export interface ServiceContext {
db: IDBPDatabase;
}