This commit is contained in:
2026-03-14 15:28:30 -05:00
parent 49a9322a31
commit fe401341af
3 changed files with 9 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
import type { PermissionKey } from "./permissions";
import type { PermissionKey } from "./permissions.js";
export interface AuthUser {
id: string;
@@ -18,4 +18,3 @@ export interface LoginResponse {
token: string;
user: AuthUser;
}