12 lines
145 B
TypeScript
12 lines
145 B
TypeScript
import type { User } from '$lib/stores/auth';
|
|
|
|
declare global {
|
|
namespace App {
|
|
interface Locals {
|
|
user: User | null;
|
|
}
|
|
}
|
|
}
|
|
|
|
export {};
|