fix build error

This commit is contained in:
yoan
2024-12-11 22:53:37 +08:00
parent 9764fb481f
commit 419b6eb626
6 changed files with 7 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
import { type BaseModel } from "pocketbase";
export interface SettingsModel<T> extends BaseModel {
export interface SettingsModel<T> extends Omit<BaseModel, "created" | "updated"> {
name: string;
content: T;
}