mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-19 05:09:40 +02:00
12 lines
186 B
TypeScript
12 lines
186 B
TypeScript
|
import type { UserOut } from "~/lib/api/types/user";
|
||
|
|
||
|
declare module "#auth-utils" {
|
||
|
type User = UserOut;
|
||
|
|
||
|
type UserSession = object;
|
||
|
|
||
|
type SecureSessionData = object;
|
||
|
}
|
||
|
|
||
|
export { };
|