Fix frontend type imports

This commit is contained in:
Owen
2025-10-14 11:28:56 -07:00
parent a8d00a47cd
commit c0039190bd
15 changed files with 50 additions and 93 deletions

View File

@@ -9,7 +9,6 @@ import { db } from "@server/db";
import { eq } from "drizzle-orm";
import { licenseKey } from "@server/db";
import license from "#private/license/license";
import { LicenseStatus } from "@server/license/license";
const paramsSchema = z
.object({
@@ -17,8 +16,6 @@ const paramsSchema = z
})
.strict();
export type DeleteLicenseKeyResponse = LicenseStatus;
export async function deleteLicenseKey(
req: Request,
res: Response,