mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 13:48:14 +00:00
13 lines
179 B
TypeScript
13 lines
179 B
TypeScript
/// <reference types="astro/client" />
|
|
|
|
declare namespace App {
|
|
interface Locals {
|
|
user?: {
|
|
name: string;
|
|
email: string;
|
|
};
|
|
|
|
accessToken?: string;
|
|
}
|
|
}
|