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

@@ -0,0 +1,11 @@
import { LicenseStatus, LicenseKeyCache } from "@server/license/license";
export type ActivateLicenseStatus = LicenseStatus;
export type DeleteLicenseKeyResponse = LicenseStatus;
export type GetLicenseStatusResponse = LicenseStatus;
export type ListLicenseKeysResponse = LicenseKeyCache[];
export type RecheckStatusResponse = LicenseStatus;