mirror of
https://github.com/mealie-recipes/mealie.git
synced 2026-03-03 02:57:01 +00:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
import type { UserOut } from "~/lib/api/types/user";
|
|
|
|
declare module "#auth-utils" {
|
|
type User = UserOut;
|
|
|
|
type UserSession = object;
|
|
|
|
type SecureSessionData = object;
|
|
}
|
|
|
|
export { };
|