mirror of
https://github.com/withastro/astro.git
synced 2025-01-06 22:10:10 -05:00
14 lines
183 B
TypeScript
14 lines
183 B
TypeScript
|
/// <reference types="astro/client" />
|
||
|
declare global {
|
||
|
namespace AstroMiddleware {
|
||
|
interface Locals {
|
||
|
user: {
|
||
|
name: string;
|
||
|
surname: string;
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export {};
|