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

@@ -2,7 +2,7 @@ import { type BaseModel } from "pocketbase";
import { WorkflowModel } from "./workflow";
export interface CertificateModel extends BaseModel {
export interface CertificateModel extends Omit<BaseModel, "created" | "updated"> {
san: string;
certificate: string;
privateKey: string;